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);
   }
   button{
      font-size: 18px;
      border: none;
      padding:10px;
      background-color: darkblue;
      color:white;
   }
</style>
</head>
<body>
<h1>Centering Example</h1>
<div class="centered">
<button>This button is centered</button>
</div>
</body>
</html>

ผลลัพธ์

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

จะจัดองค์ประกอบปุ่มให้อยู่ตรงกลางในแนวตั้งและแนวนอนด้วย CSS ได้อย่างไร