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

คุณสมบัติความกว้างสูงสุดของ CSS


ความกว้างสูงสุด คุณสมบัติใช้เพื่อกำหนดความกว้างสูงสุดที่สามารถเป็นกล่องได้ ค่าของคุณสมบัติความกว้างสูงสุดอาจเป็นตัวเลข ความยาว หรือเปอร์เซ็นต์

<html>
   <head>
   </head>
   <body>
      <p style = "max-width:100px; height:200px; border:1px solid green; padding:5px; margin:10px;">
         This paragraph is 200px high and max width is 100px
         This paragraph is 200px high and max width is 100px
      </p>
      <img alt = "logo" src="/css/images/logo.png" width = "100" height = "100" />
   </body>
</html>