About
The max-width property defines the maximum width of an element according to its parent element. The value is normally a percentage.
Articles Related
Example
div {
background-color:blue;
color:white;
max-width:100px;
padding:3rem;
}
<div>
Hallo
</div>