Syntax | selector {width: value;}
|
---|---|
Usage | The width property is used to specify the width of the content area of an element's box. (See CSS Box Model for information concerning the boxes that are generated for elements.) The width property does NOT include the width of the padding, border, or margin areas. This property is specified by using a length, percentage, or keyword, according to the syntax shown above. Negative values are not permitted. If a percentage value is used, the value will be a percentage of the containing block. CSS Example: The width properties are set using length and percentage values. #tst1 {width: 200px;} #tst2 {width: 50%;} |
Keywords |
|
Applies To | In general, this property applies to block-level elements and replaced elements. |
Inherited | No |
Initial Value | auto |
The width properties are set using length and percentage values. |