CSS 设置字体的异体:修订间差异

来自站长百科
跳转至: 导航、​ 搜索
(新页面: <span style="text-align:center; border:1px solid #000; float:right; padding:6px;"><strong>导航:</strong> 上一页 | {{template:开发语言导航}}</span> <div style="cle...)
 
无编辑摘要
 
第16行: 第16行:
</html>
</html>
<br>
<br>
[[category:CSS学习教程]]

2009年10月17日 (六) 14:37的最新版本

导航: 上一页 | ASP | PHP | JSP | HTML | CSS | XHTML | aJAX | Ruby | JAVA | XML | Python | ColdFusion


<html>
<head>
<style type="text/css">
p.normal {font-variant: normal}
p.small {font-variant: small-caps}
</style>
</head>
<body>
<p class="normal">This is a paragraph</p>
<p class="small">This is a paragraph</p>
</body>
</html>