【发布时间】:2014-06-02 21:40:28
【问题描述】:
所以我正在处理 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 中:
这可能吗?以及如何?
【问题讨论】: