.text-center { text-align: center; } .text-middle { display: flex; align-items: center; justify-content: center; } .image-left { float: left; margin-right: 10px; } .image-right { float: right; margin-left: 10px; } .clearfix::after { content: ""; display: table; clear: both; }
上述代码展示了一些实现对齐的常见技术。例如,通过使用文本居中(text-center)和垂直居中(text-middle)类来对齐文本。
如果要对图像和其他元素进行对齐,则可以使用浮动元素来左对齐(image-left)或右对齐(image-right)元素。
最后,清除浮动对于保持页面布局的稳定性也是必需的。 通过为包含浮动元素的父元素添加clear-fix类,可以实现此目标。