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

จะรักษาอัตราส่วนกว้างยาวขององค์ประกอบด้วย CSS ได้อย่างไร?


เพื่อรักษาสัดส่วนขององค์ประกอบด้วย CSS โค้ดมีดังนี้ -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
   body{
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   }
   .aspectContainer {
      background-color: rgb(191, 66, 216);
      position: relative;
      width: 100%;
      padding-top: 75%;
   }
   .aspectText {
      position: absolute;
      text-align: center;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      Text-align: center;
      font-size: 20px;
      color: white;
   }
</style>
</head>
<body>
<h1>Aspect ratio example</h1>
<div class="aspectContainer">
<div class="aspectText">4:3 Aspect ratio</div>
</div>
<h2>Resize the window to see 4:3 aspect ratio in action</h2>
</body>
</html>

ผลลัพธ์

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

จะรักษาอัตราส่วนกว้างยาวขององค์ประกอบด้วย CSS ได้อย่างไร?

ในการปรับขนาดหน้าต่าง องค์ประกอบจะหดตัวในอัตราส่วน 4:3 −

จะรักษาอัตราส่วนกว้างยาวขององค์ประกอบด้วย CSS ได้อย่างไร?