第一個div(overflowhidden)中的標題與第二個div中的標題(nooverflow)不在同一個垂直位置。爲什麼「溢出」屬性給出不同的結果?
的的jsfiddle鏈接如下:
的HTML是
<div class="line">
<span class="attr">title :</span>
<span id="overflowhidden" class="content"> this is long content</span>
</div>
<div class="line">
<span class="attr">title :</span>
<span id = "nooverflow" class="content"> this is long content</span>
</div>
的CSS是:
.line {
height: 30px;
width: 200px;
outline: 1px dashed;
}
.attr {
position: relative;
width: 30px;
}
.content {
position: relative;
display: inline-block;
left: 40px;
width: 100px;
height: 20px;
line-height: 20px;
text-overflow: ellipsis;
white-space: nowrap;
border-radius: 15px;
border: 1px solid greenyellow;
}
#overflowhidden {
overflow: hidden;
}
請在*的問題你的代碼*。 – George 2014-09-30 14:35:03
據我所知,他們看起來都一樣嗎? http://jsfiddle.net/84fermg6/10/ – 2014-09-30 14:47:13
@ Dejan.S對不起,我不熟悉jsfiddle。鏈接是更新 http://jsfiddle.net/Lrnz4mff/ – user1140560 2014-10-01 01:46:33