Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа </title> <style> .all-small-caps { font-variant-caps: all-small-caps; font-style: italic; } .small-caps { font-variant-caps: small-caps; font-style: italic; } .normal { font-variant-caps: normal; font-style: italic; } </style> </head> <body> <h2>Пример свойства font-variant-caps</h2> <p class="all-small-caps"> Свойство font-variant-caps контролирует использование альтернативных глифов для букв в верхнем регистре. </p> <p class="small-caps">Small caps!</p> <p class="normal">Normal caps!</p> </body> </html>