-2
我想要獲得一個跨度來包裝它的文本,以適應指定的寬度,同時與其對等元素內聯顯示。看起來,無論我嘗試文本如果太長,超出了我想讓它停下來,並且進入另一個元素的地方。如何用內聯顯示來包裝跨度文本以適合指定的寬度?
HTML:
<div class="LeftAdjustedText">
<div class="FreeQuest">
<span class="QuestText">We welcome any comments about your check-in experience</span><br>
<textarea cols="50" rows="5" maxlength="2000"></textarea>
<div><span class="QuestText CommentMaxLen">2000</span> </div>
</div>
</div>
CSS:
.LeftAdjustedText .FreeQuest{
display: inline;
}
.LeftAdjustedText .FreeQuest span{
width: 466px;
}
'width'對跨度等內聯元素沒有影響。目前還不清楚你想要做什麼。 –