Вы можете настроить line-height
и использовать overflow:hidden
, но обратите внимание, что при использовании другого font-family
может потребоваться другое значение:
h1 {
text-transform: uppercase;
line-height: 0.75em;
overflow: hidden;
}
<h1>Fácil é â ä</h1>
<h1 style="font-size:25px">Fácil é â ä</h1>
<h1 style="font-size:18px">Fácil é â ä</h1>
С другим font-family
:
h1 {
font-family:arial;
text-transform: uppercase;
line-height: 0.87em;
overflow: hidden;
}
<h1>Fácil é â ä</h1>
<h1 style="font-size:25px">Fácil é â ä</h1>
<h1 style="font-size:18px">Fácil é â ä</h1>