Computer >> Máy Tính >  >> Lập trình >> CSS

Biến thể phông chữ trong CSS

Thuộc tính font-variant được sử dụng để chỉ định font-variant-caps, font-variant-numeric, font-variant-Alternates, font-variant-ligatures và font-variant-East-Asian.

Cú pháp

Cú pháp của thuộc tính font-variant như sau -

Selector {
   font-variant: /*value*/
}

Các ví dụ sau minh họa thuộc tính CSS font-variant -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<style>
table * {
   box-shadow: inset 0 0 10px lavender;
   font-size: 1.2em;
   font-variant: small-caps;
}
td + td {
   font-variant: all-petite-caps;
}
</style>
</head>
<body>
<table>
<tr>
<th>DEMO a</th>
<th>DEMO b</th>
</tr>
<tr>
<td>1a</td>
<td>1b</td>
</tr>
<tr>
<td>2a</td>
<td>2b</td>
</tr>
</table>
</body>
</html>

Đầu ra

Điều này cho kết quả sau -

Biến thể phông chữ trong CSS

Ví dụ

<!DOCTYPE html>
<html>
<head>
<style>
div {
   display: flex;
   margin: 20px;
   width: 20%;
   float: left;
   box-shadow: inset 0 0 9px orange;
}
#demo {
   font-variant: unicase;
}
</style>
</head>
<body>
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pellentesque felis ac lorem ornare maximus.</div>
<div id="demo">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed pellentesque felis ac lorem ornare maximus.</div>
</body>
</html>

Đầu ra

Điều này cho kết quả sau -

Biến thể phông chữ trong CSS