Home > Web Front-end > HTML Tutorial > css中文字能够撑开高度吗_html/css_WEB-ITnose

css中文字能够撑开高度吗_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:28:02
Original
1192 people have browsed it

css中文字能够撑开高度吗:
本章节介绍一个可能比较误导人的概念。
那就是当一个div没有设置高度的时候,可能很多人认为它的高度是由内部的文字撑开的,真的是这样吗,下面就通过代码实例进行一下验证,代码实例如下:

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">div{  width:300px;  border:1px solid red;  line-height:0px;}</style></head><body><div>蚂蚁部落</div></body></html>
Copy after login

大家看到演示结果了没有,高度并没有被撑开,这里涉及到line-height的相关知识。
关于line-height可以参阅line-height属性深入介绍一章节。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=15899

更多内容可以参阅:http://www.softwhy.com/divcss/

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