“Отзывчивый текст CSS” Ответ

Отзывчивый текст CSS

/* Uses vh and vm with calc */
@media screen and (min-width: 25em){
  html { font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) ); }
}

/* Safari <8 and IE <11 */
@media screen and (min-width: 25em){
  html { font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) ); }
}

@media screen and (min-width: 50em){
html { font-size: calc( 16px + (24 - 16) * (100vw - 400px) / (800 - 400) ); }
}
deadlymuffin

Отзывчивый текст CSS

<h1 style="font-size:10vw;">Responsive Text</h1>

<p style="font-size:5vw;">Resize the browser window to see how the text size scales.</p>
Dayanaohhnana

Ответы похожие на “Отзывчивый текст CSS”

Вопросы похожие на “Отзывчивый текст CSS”

Больше похожих ответов на “Отзывчивый текст CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования