Computer >> Máy Tính >  >> Lập trình >> HTML

Làm cách nào để căn giữa một
theo chiều ngang trong một
khác?

Ở đây tôi có một biểu mẫu html và một tệp css (style.css). "O-div" là div bên ngoài và "i-div" là lớp div bên trong.

Ví dụ

<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>

Đầu ra

I am OUTER DIV
I am INNER DIV, I am in Center

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;
}