About the invalid line-height setting in CSS Let's write this string of code first: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .head{ height: 100px; text-align: center; line-height: 100px;/* Set the line height to center the font*/ background: #333;/* Set the entire background to black to make it easier to see the font*/ color: red; font:700 18px simsun;/* Set the font*/ } </style> </head> <body> <div class="head"> Hello, Southwest Petroleum University. </div> </body> </html> Then open it in the browser to see the effect: We found that in the vertical direction, the font is not displayed in the middle of the box. Then we put the statement that sets the line height below the statement that sets the font: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> .head{ height: 100px; text-align: center; background: #333;/* Set the entire background to black to make it easier to see the font*/ color: red; font:700 18px simsun;/* Set the font*/ line-height: 100px;/* Set line height*/ } </style> </head> <body> <div class="head"> Hello, Southwest Petroleum University. </div> </body> </html> Then open it with your browser: The font successfully jumped to the middle~~~~~ Summary: When setting the line height with CSS, the line-height attribute must be below the font, otherwise it will be invalid! The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. |
<<: JavaScript to achieve magnifying glass effect
>>: Docker installation and deployment example on Linux
Pre-installation preparation The main purpose of ...
Share a real-time clock effect implemented with n...
"Development is more than just writing code&q...
NULL and NOT NULL modifiers, DEFAULT modifier, AU...
The PHP base image used in this article is: php:7...
Problem Description 1. Database of the collection...
This article uses examples to describe MySQL pess...
Here, I have mainly sorted out some commonly used...
This article shares with you the graphic tutorial...
<br />According to statistics, the average s...
Many people have been told how to compile from th...
This article uses examples to illustrate the synt...
The table structure is as follows: id varchar(32)...
Written in front In recent years, the live stream...
XML/HTML CodeCopy content to clipboard < butto...