如何在另一个中水平居中一个?
?
这里有一个 html 表单和一个 css 文件(style.css),"o-div" 是外层 div,"i-div" 是内层 div 类。
示例
<html > <head> <title>center a div</title> <link href="../../Content/style.css" rel="stylesheet" type="text/css" /> </head> <body> <div class="o-div"> I am OUTER DIV <div class="i-div"> I am INNER DIV, I am in Center </div> </div> </body> </html>
输出
I am OUTER DIV I am INNER DIV, I am in Center
Explore our latest online courses and learn new skills at your own pace. Enroll and become a certified expert to boost your career.
Style.css
body { background-color:Gray; padding:30px; } .o-div { padding:50px; background-color:Lime; } .i-div { background-color:Fuchsia; max-width:400px; height:200px; margin: 0 auto; text-align:center; }
广告