赞
踩
<style> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> </head> <body> <style> .innner { display: flex; background-color: #ea4d22; height: 100px; /* line-height: 100px; */ /* text-align: center; */ justify-content: center; flex-direction: column; } .innner2 { background-color: #20e64b; height: 100px; text-align: center; } .innner3 { display: flex; background-color: #18a0c2; height: 100px; /* line-height: 100px; */ text-align: center; justify-content: center; flex-direction: column; } </style> <div class="innner">垂直居中示例</div> <div class="innner2">水平居中示例</div> <div class="innner3">垂直水平居中示例</div> </body> </html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。