Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的网站中,标题很长,因此它出现在两行中,但第二行没有对齐。如何使用 css 将两条线对齐在一起?
一个例子可以在这里查看
您需要创建一个样式以使头像向左浮动。这是一个例子:
#ls_avatar-0 { float: left; }
此外,您可能希望清除浮动以防止区域崩溃,如下所示:
.subtext1 { clear: both; }