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

จะจัดกึ่งกลางรูปภาพด้วย CSS ได้อย่างไร


ต่อไปนี้คือโค้ดสำหรับจัดกึ่งกลางรูปภาพด้วย CSS −

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
img {
   display: block;
   margin-left: auto;
   margin-right: auto;
   width: 50%;
}
</style>
</head>
<body>
<h1 style="text-align: center;">Example of centering an image</h1>
<img src="https://images.pexels.com/photos/34950/pexels-photo.jpg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
</body>
</html>

ผลลัพธ์

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

จะจัดกึ่งกลางรูปภาพด้วย CSS ได้อย่างไร