從我所有的搜索中,我似乎都在使用正確的技術,但居中不會發生。居中文本無效
這是從我的.html文件的代碼塊:
<div id="section-movement" class="section-container">
<div class="section-title">
Movement <span class="center">*click entries for more details*</span><span class="float-right">limited by movement speed</span>
</div>
</div>
這是我的.css文件中的條目:
.center {
text-align: center;
}
.float-right {
float: right;
}
輸出應該是這個詞「運動」左對齊,文本'點擊輸入更多細節',應居中,文本'移動速度限制'應右對齊。左側和右側的文本工作正常,但「點擊更多詳細信息」文本不是居中,它只是緊跟着'運動'文本。
那麼你爲什麼不(來自單詞 「撇號」 也)刪除撇號?Plus:'center'標籤在HTML5中無效:https://www.w3schools.com/tags/tag_center.asp – Johannes