max&wit

CSS Max-width

CSS Max-width

Introduction to CSS Max-width

The `max-width` property restricts the width of an element to a maximum value, useful for responsive design.

Example


img {
    max-width: 100%;
    height: auto;
}
        

Browser Support

Supported by all modern browsers.