Да, вы можете настроить таргетинг на первую строку, чтобы увеличить ее размер:
.test {
text-align: center;
font-size:8px;
}
.test:first-line {
font-size:40px;
}
h1 {
word-spacing: 9999px;
}
<div class="test">
<h1>split this</h1>
</div>
А вот еще один трюк для создания разрыва строки с помощью word-spacing
.test {
width:min-content;
margin:auto;
text-align: center;
font-size:8px;
}
.test:first-line {
font-size:40px;
}
<div class="test">
<h1>split this</h1>
</div>