search
HomeWeb Front-endHTML TutorialCSS inline layout practice summary_html/css_WEB-ITnose

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

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

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>

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
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
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor