Setting Width to auto

It is used to set the width property to its default value. If the width property is set to auto then the browser calculates the width of the element.

Syntax

width: auto;

Example: This example demonstrates the use of the width property whose value is set to auto.

HTML
<!DOCTYPE html>
<html>

<head>
    <title> CSS width Property </title>
    <style>
        .gfg {
            width: auto;
            color: white;
            font-size: 20px;
            background-color: rgb(0, 150, 0);
        }

        h2 {
            font-size: 20px;
            color: black;
        }
    </style>
</head>

<body>
    <h2>
        CSS width Property
    </h2>
    <p class="gfg">
        This is an example of auto width property
    </p>


</body>

</html>

Output:

CSS width Property

The width property in CSS is used to set the width of elements such as text and images. It can be specified in various units, including pixels (px), percentages (%), and centimeters (cm). This property defines the width of the content area, excluding padding, borders, and margins.

The width property can be overridden by the min-width and max-width properties. When the box-sizing property is set to border-box, the width includes padding and borders.

Syntax

width: auto | value | initial | inherit;

Note: The width property for the element does not involve the padding, border & margin.

Default Value

Its default value is auto. 

Property Values

ValueDescription
autoDefault value; the browser calculates the width of the element automatically.
valueSets the width using units like pixels (px), percentages (%), or centimeters (cm). Cannot be negative.
initialSets the width property to its default value.
inheritInherits the width property from its parent element.

All the properties are described well with the example below.

Similar Reads

Setting Width to auto

It is used to set the width property to its default value. If the width property is set to auto then the browser calculates the width of the element....

Setting Width with Specific Units

It is used to set the width in the form of pixels(px), Percentage(%), centimetre(cm) etc. The width can not be negative....

Setting Width to initial

It is used to set an element’s CSS property to its default value....

Inheriting Width from Parent

It is used to inherit a property to an element from its parent element property value....