所以我正在处理wordpress列表帖子循环,我在div中添加了一个固定宽度和高度的帖子标题。 但是有些帖子有很长的标题,所以我希望它的字体较小,行高较小,但我不能为它做一个新课程,
这就是我的意思:
<div class="post-title">hellow hellow hellow</div>
<div class="post-title-2">hellow hellow hellow hellow hellow</div>
<style>
.post-title{
width: 100px; height: 25px;
border:1px #000 solid;
font-size: 14px;
}
.post-title-2{
width: 100px; height: 25px;
border:1px #000 solid;
line-height:100%;
font-size: 11px;
}
</style>
并在JSFiddle:
可能吗?怎么样?