运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <head> <style> /* enable small-caps */ .ex1 { font-feature-settings: "smcp" on; } /* convert both upper and lowercase to small caps */ .ex2 { font-feature-settings: "c2sc", "smcp"; } /* no common ligatures */ .ex3 { font-feature-settings: "liga" 0; } /* enable automatic fractions */ .ex4 { font-feature-settings: "frac"; } </style> </head> <body> <h1>The font-feature-settings Property</h1> <div class="ex1">This is some text 0123.</div> <div class="ex2">This is some text 0123.</div> <div class="ex3">This is some text 0123.</div> <div class="ex4">This is some text 0123.</div> </body> </html>