css line width code example
Example 1: line-height css
line-height: normal;
line-height: 3.5;
line-height: 3em;
line-height: 34%;
line-height: inherit;
line-height: initial;
line-height: unset;
Example 2: width css property
width: 300px;
width: 25em;
width: 75%;
width: max-content;
width: min-content;
width: fit-content(20em);
width: auto;
width: inherit;
width: initial;
width: unset;
Example 3: line-height css
<div class="box green">
<h1>Avoid unexpected results by using unitless line-height.</h1>
length and percentage line-heights have poor inheritance behavior ...
</div>
<div class="box red">
<h1>Avoid unexpected results by using unitless line-height.</h1>
length and percentage line-heights have poor inheritance behavior ...
</div>
<!-- The first <h1> line-height is calculated from its own font-size (30px × 1.1) = 33px -->
<!-- The second <h1> line-height results from the red div's font-size (15px × 1.1) = 16.5px, probably not what you want -->