Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

วิธีการจัดองค์ประกอบในแนวตั้งและแนวนอนด้วย CSS?


หากต้องการจัดองค์ประกอบในแนวตั้งและแนวนอนด้วย CSS โค้ดจะเป็นดังนี้ -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .centered {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px;
      border: 3px solid rgb(0, 70, 128);
   }
</style>
</head>
<body>
<h1>Centering Example</h1>
<div class="centered">
<h2>This text is centered vertically and horizontally both</h2>
</div>
</body>
</html>

ผลลัพธ์

รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

วิธีการจัดองค์ประกอบในแนวตั้งและแนวนอนด้วย CSS?