htmlcss

The font-stretch property is used in CSS and certain HTML elements. It is used to change the shape of the font face.


Values


HTML example:

<span style="font-stretch:ultra-expanded;">Ultra expanded font.</span>

Ultra expanded font.


CSS example:

h1 {
    font-stretch:ultra-expanded;
}