【发布时间】:2019-09-04 09:13:25
【问题描述】:
可能这与它的位置是absolute 的事实有关,但您仍然如何将absolute 定位为div 居中?
使用top,而不是margin-top 有效,但left 代替margin-left 不会影响它 .为什么?
.title
{
display:block;
position: absolute;
width: 90%;
margin-left: auto;
margin-right: auto;
height: 10%;
top : 80%;
}
<div class="title fontHugeTitle2"><h1> The Best In Town </h1></div>
【问题讨论】:
-
你的html代码是什么?能否添加完整的相关代码
标签: css