我想要一个与内容具有相同宽度的 div,display: inline-block;
但是当我使用它时,text-align: center
它不再工作了。
所以我的内容只是向左走,内联块适用于它。
像这样:
#div1 {
position: relative;
bottom: 10px;
left: auto;
text-decoration: overline underline;
display: inline;
text-align: center;
}
它不再使 div 的文本居中。
我怎样才能同时获得这两种效果?