** วิธีแก้ปัญหาที่รับผิดชอบ **
สมมติว่าองค์ประกอบใน div เป็นอีกหนึ่ง div ...
วิธีนี้ใช้ได้ผลดี
<div class="container">
<div class="center"></div>
</div>
ภาชนะสามารถขนาดใด ๆ (ต้องเป็นตำแหน่งสัมพัทธ์)
.container {
position: relative;/*important*/
width: 200px;/*any width*/
height: 200px;/*any height*/
background: red;
}
องค์ประกอบ ( div ) สามารถมีขนาดใดก็ได้ (ต้องเล็กกว่าคอนเทนเนอร์ )
.center {
position: absolute;/*important*/
top: 50%;/*position Y halfway in*/
left: 50%;/*position X halfway in*/
transform: translate(-50%,-50%);/*move it halfway back(x,y)*/
width: 100px;/*any width*/
height: 100px;/*any height*/
background: blue;
}
ผลจะออกมาเป็นแบบนี้ เรียกใช้ข้อมูลโค้ด
.container {
position: relative;
width: 200px;
height: 200px;
background: red;
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 100px;
height: 100px;
background: blue;
}
<div class="container">
<div class="center"></div>
</div>
ฉันพบว่ามันมีประโยชน์มาก