max-width

Description

max-width sets a maximum constraint on the width of the element.

ItemValue
Initial value none
Inherited No.
Version CSS2
JavaScript syntax object.style.maxWidth="10px"
Applies to All elements except inline nonreplaced elements and table elements.

Syntax and Property Values


max-width: length | percentage | inherit 

The property values are listed in the following table.

ValueDescription
auto Default value. The browser does the calculation.
length Set width in px, cm, etc.
% Set width in percent of the containing element
inherit Inherit the width property from the parent element

Example


<!DOCTYPE HTML>
<html>
    <head>
        <title></title>
        <style type='text/css'>
      p {<!--from w  w w .  j  av  a2s .  c  o m-->
          padding: 10px;
          margin: 10px;
          border: thin solid black;
          width: auto;
          max-width: 500px;
      }
        </style>
    </head>
    <body>
    <p>
        This is a test. This is a test. 
    </p>
    </body>
</html>

Click to view the demo

The code above generates the following result.

max-width




















Home »
  HTML CSS »
    HTML CSS Reference »




HTML Tag Reference
CSS Reference
CSS Selector Reference
Encoding Reference