The font-stretch property allows you to make text wider or narrower.
<style type="text/css">
.example-CSS-Font-Stretch-paragraph{
font-family: Arial, Helvetica, sans-serif;
font-stretch: condensed;
}
</style>
<p class="example-CSS-Font-Stretch-paragraph">This is a paragraph.</p>
Output
This is a paragraph.
