1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 p.normal {font-variant:normal;} 6 p.small {font-variant:small-caps;} 7 </style> 8 </head> 9 10 <body> 11 <p class="normal">My name is Hege Refsnes.</p> 12 <p class="small">My name is Hege Refsnes.</p> 13 </body> 14 15 </html>
font-variant 属性设置小型大写字母的字体显示文本,这意味着所有的小写字母均会被转换为大写,但是所有使用小型大写字体的字母与其余文本相比,其字体尺寸更小
时间: 2024-10-27 06:54:03