<!DOCTYPE html>
<html>
<head>
<style>
.ex1 { font-feature-settings: "smcp" on; }
.ex2 { font-feature-settings: "c2sc", "smcp"; }
.ex3 { font-feature-settings: "liga" 0; }
.ex4 { font-feature-settings: "frac"; }
</style>
</head>
<body>
<h1>font-feature-settings 属性</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>
<p><b>注释:</b>Internet Explorer 9 以及更早的版本不支持 font-feature-settings 属性。</p>
</body>
</html>