css盒子居中
阿新 • • 發佈:2017-12-12
isp box font lis span pre html pos left
方法1(margin: 0 auto)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>css浮動盒子居中</title> <style> *{ margin: 0; padding: 0; list-style: none; } body{ background: #fffccc; text-align: center; } .box{ background-color: red; display: inline-block; } </style> </head> <body> <div class="box"> 我是浮動的盒子 我要居中 </div> </body> </html>
方法2(inline_block)
body{ background: #fffccc; } .box{ background-color: red; width: 30%; margin: 0 auto; }
方法三(flew)
body { background: #fffccc; display: flex; justify-content: center; height: 300px; } .box{ background-color: red; width: 30%; margin: 0 auto; }
盒子要有高度不然其高度與父級一致
方法四 (浮動或者定位)
body { background: #fffccc; height: 300px; } .box { background-color: red; width: 30%; float: left; margin-left: 50%; transform: translateX(-50%); }
)
css盒子居中