我正在尝试使用css创建一个网页..突然我意识到我无法将段落(或div)中某些文本的高度设置为0px。我想从这个神奇的社区得到一些帮助。
<!DOCTYPE html>
<html>
<style>
p{
background-color:red;
height:0px;
}
</style>
<body>
<p>All behold the power of mighty Juggernaut</p>
</body>
</html>
答案 0 :(得分:-1)
使用font-size,如果设置为0
,它将使其为0 px
<!DOCTYPE html>
<html>
<style>
p{
background-color:red;
font-size:0px;
}
</style>
<body>
<p>All behold the power of mighty Juggernaut</p>
</body>
</html>