我正在尝试使屏幕水平居中的 div 和另一个在其侧面对齐的 div (这是我想要“移动”的 div,例如浮动到屏幕的最右侧。问题是居中的 div 总是最终退出屏幕中心。
谢谢!
尝试这个:
body{ /* or parent element */
text-align: center;
}
.text{
font-weight: 800;
color: green;
font-size: 20px;
display: inline-block;
position: relative;
}
.text:after{
content: "side text";
position: absolute;
top: 3px;
font-weight: normal;
white-space: nowrap;
font-size: 12px;
color: red;
left: 100%;
}