Home > Web Front-end > CSS Tutorial > How to clear white space in css

How to clear white space in css

王林
Release: 2023-01-06 11:14:15
Original
4172 people have browsed it

The way to clear white space in css is to add the attribute font-size to the outer element, set the attribute value to 0, and specify the specific size of the font on the inner element, such as [font-size : 0;].

How to clear white space in css

The operating environment of this article: windows10 system, css 3, thinkpad t480 computer.

If we want to clear the space between inline elements, the best way is to set font-size:0 on the outer element; and also specify the specific font size on the inner element.

The font-size property is used to set the font size.

Common attribute values:

  • smaller Set font-size to a smaller size than the parent element.​

  • larger Set font-size to a larger size than the parent element.

  • #length Set font-size to a fixed value.​

  • % ​ Set font-size to a percentage value based on the parent element.

The code example is as follows:

ul.inline-block-list { /* 比如 ul 或者 ol元素 */  
    font-size: 0;  
}  
ul.inline-block-list li {  
    font-size: 14px; /* 设置具体的字体大小 */  
}  
ul.inline-block-list { /* 比如 ul 或者 ol元素 */
font-size: 0;
}
ul.inline-block-list li {
font-size: 14px; /* 设置具体的字体大小 */
}
Copy after login

In order to offset the font attribute of the outer element, the font-size attribute must be specified on the inner element. Of course, this is very simple.

Related recommendations: css video tutorial

The above is the detailed content of How to clear white space in css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template