/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/font_stretch.html
23 строки
338 B
Patrick Walton
gfx: Implement `font-stretch` per CSS3-FONTS § 3.3 in the Core Text
28 янв 2015, 23:42
28 янв 2015, 23:42
abddfa7
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <style> body { font-size: 36pt; font-family: "Helvetica Neue"; font-weight: bold; font-style: normal; } #a { font-stretch: normal; } #b { font-stretch: condensed; } </style> </head> <body> <div id=a>Felis silvestris catus</div> <div id=b>Felis silvestris catus</div> </body> </html>