水平方向布局
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>水平方向布局</title> <style> /* 如果left和right都设置为auto,则会两侧外边距设置的是相等的值,从而导致子元素在父元素中水平居中 */ .box{ width: 100px; height: 100px; border:3px yellow solid; margin-left: auto; margin-right: auto; } </style> </head> <body> <div class="box"></div> </body> </html>
本文来自博客园,作者:氯丙嗪,转载请注明原文链接:https://www.cnblogs.com/YcxyH/p/16249047.html