Table of Contents
Foreword
Related css
line-box
font-size
line-height & height
When line-height > font-size
When line-height < font-size,
vertical-align
Conclusion
Reference
Home Web Front-end HTML Tutorial CSS inline layout practice summary_html/css_WEB-ITnose

CSS inline layout practice summary_html/css_WEB-ITnose

Jun 24, 2016 am 11:39 AM

Foreword

Normally, to arrange elements in a row, the usual way is to use float and then clear the float.
is as follows:

But if you want to center it vertically, you must manually adjust the position of the blue or green block, which is more cumbersome.

Or another method, use inline-block or inline (i.e. IFC), just encountered a pit here.

IFC (Inline formatting contexts) inline formatting context, I have no idea what it is.
Mainly affects the css of the layout within IFC

  • font-size
  • line-height
  • height
  • vertical-aligin

line-box

Line box model, which is a display area. According to the block container, multiple inline-level elements of each line will jointly generate a line. box model.

font-size

Common attributes used to specify the size of text type nodes. The values ​​of many attributes in IFC are based on this.

line-height & height

Line height is more clearly defined in w3c:

On a block container element whose content is composed of inline-level elements , 'line-height' specifies the minimal height of line boxes within the element.The minimum height consists of a minimum height above the baseline and a minimum depth below it.

Within a block container consisting of multiple inline elements, 'line-height' specifies a minimum height for the line box model of the inline elements.
This minimum height is composed of the minimum height above the baseline and the minimum depth below the baseline.

As shown in the stolen picture, the four lines from top to bottom are the top line, the middle line, the baseline, and the bottom line.
Then the line height refers to the vertical distance between the baselines of the current line of the context, that is, the vertical distance between the two red lines in the picture (actually, numerically, the line height is also equal to the distance between other same colors).

Another way of thinking is to understand the downward trend.
In fact, in many cases, there is only one row in a container, that is, only one baseline. How is the row height calculated to ensure this spacing?
As follows:

Blue is the scope of the container, and there is a line box between the boundary lines. Text within inline elements.

So,

When line-height > font-size

When a container with a set height is set to a line height, inline meta content The top and bottom will increase the height of 2 blank content. The height of the container will also be expanded so that the height of the container is equal to line-height.

a1 b1 c1 == line-height & a1 == c1

If the height of the container has been set, the part beyond the lower boundary line of the container will not be affected. layout.

When line-height < font-size,

When the height of the container is not specified, the upper and lower sides of the container collapse (similar to the case where margin is a negative value), but the above formula Still established.

a1 (negative value) b1 c1 (negative value) == line-height & a1 == c1

as follows:

The white is the collapsed part (i.e. a1 and c1), and the red is the line-height. If the container is set to overflow:hidden,
then only the red part can be seen.

If the container is specified with height,

height > line-height, then the yellow line will move down and the red part will show more,
height < line-height, then the yellow line will move up, and the red part will be covered more.

So what happens here is,

determines the priority of container height height > line-height > font-size

vertical-align

Vertical alignment line, default is baseline, from W3C definition:

This property affects the vertical positioning inside a line box of the boxes generated by an inline- level element.

This attribute affects the vertical positioning of an inline box model composed of box models generated by multiple inline elements

vertical has several specific value, or specify a value.

<br /><br /><p class="a1">  <span style="vertical-align:60px;">English中文  </span>  <span>中文English  </span></p>
Copy after login

For the first span, set a vertical offset of 60px, as shown below:

Among them, the yellow line is the baseline and the green line The distance from the yellow line is 60px.
Here you will find that the height of the container (blue) is increased.

The height of the container height = line-height vertical-align

Of course, the same is true. If the height of the container is specified, the height will not change, and the height will remain unchanged. Some parts do not affect the layout. If overflow:hidden is set, the excess part will not be visible.

The other special values ​​of vertical-align can be regarded as a relative value that changes according to the height of the container.

Conclusion

Proficiently use the attributes of inline-level elements and inline layout to achieve vertical and horizontal centering effects very quickly, and have good maintainability and scalability.

Reference

W3C IFC
W3C line-height and vertical-aligin
line-height detailed explanation

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? Apr 05, 2025 am 06:15 AM

To achieve the effect of scattering and enlarging the surrounding images after clicking on the image, many web designs need to achieve an interactive effect: click on a certain image to make the surrounding...

HTML, CSS, and JavaScript: Essential Tools for Web Developers HTML, CSS, and JavaScript: Essential Tools for Web Developers Apr 09, 2025 am 12:12 AM

HTML, CSS and JavaScript are the three pillars of web development. 1. HTML defines the web page structure and uses tags such as, etc. 2. CSS controls the web page style, using selectors and attributes such as color, font-size, etc. 3. JavaScript realizes dynamic effects and interaction, through event monitoring and DOM operations.

How to implement adaptive layout of Y-axis position in web annotation? How to implement adaptive layout of Y-axis position in web annotation? Apr 04, 2025 pm 11:30 PM

The Y-axis position adaptive algorithm for web annotation function This article will explore how to implement annotation functions similar to Word documents, especially how to deal with the interval between annotations...

See all articles