Set the minimum width that a box can be with CSS


The min-width property is used to set the minimum width that a box can be. The value of the min-width property can be a number, a length, or a percentage.

Example

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

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 04-Mar-2020

256 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements