<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>font 简写方式</title>
<style type="text/css">
.first {
color: red;
font: italic small-caps bold 1em mormal;
}
.second {
color: blue;
font-style: normal;
font-variant: small-caps;
font-weight: bold;
}
</style>
</head>
<body>
<div>
<p class="first">Web前端工程狮(Web Front Siege Lion)</p>
<p class="second">CSS层叠样式表(Cascading Style Sheets)</p>
</div>
</body>
</html>