在液体css布局中我有这个代码:
<div class="column">
<div class="absolute_small_column"><p>Absolut small calumn title</p></div>
</div>
.absolute_small_column {
position:absolute;
height:15%;
top:85%;
width:100%;
z-index:2000;
}
.absolute_small_column p {
**line-height:100%;** HOW CAN I MAKE THE LINE HEIGHT OF MY P TO FIT THE 15% HEIGHT OF THE DIV?
color:#FFF;
font-weight:700;
margin:0;
padding:0
}
谢谢!
答案 0 :(得分:0)
你不能在CSS中这样做。您可以做的最好是指定行高并设置bottom: 0
而不是top: 85%; height: 15%
。