液体布局线高度百分比等于另一个高度也以百分比表示

时间:2011-04-28 19:51:59

标签: css

在液体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
}

谢谢!

1 个答案:

答案 0 :(得分:0)

你不能在CSS中这样做。您可以做的最好是指定行高并设置bottom: 0而不是top: 85%; height: 15%