<div style="position:absolute;top:50px;display: flex;align-items: center;justify-items: center;height: 30px;"> <div style="color: white"> 高级设置 </div> <div style="color: red;"> 举报该网站 </div> </div>这样写两行字对不齐怎么办
时间: 2024-04-01 14:32:59 浏览: 101
div 垂直居中的多种方法详细介绍
5星 · 资源好评率100%
你可以使用flex布局中的`justify-content`属性来控制子元素在主轴上的对齐方式。例如,如果你想让两个子元素分别位于左右两端,可以将父元素的`justify-content`设置为`space-between`。如果你希望两个子元素居中对齐,可以将`justify-content`设置为`center`。如果你希望子元素居中对齐并且它们之间的距离相等,可以将`justify-content`设置为`space-around`。你可以根据自己的需要选择适合的属性值。
阅读全文