案例
HTML代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="huyiwei">
<meta name="generator" content="HBuilder X">
<title>匾牌设计</title>
<link rel="stylesheet" type="text/css" href="实验8-2.css"/>
</head>
<body>
<div id="div0">
<p>
海纳百川 有容乃大
</p>
</div>
</body>
</html>
CSS
p{
font-style: italic; /* 斜体 */
font-weight: bolder; /* 特粗 */
font-size: 70px;
line-height: 1.5px;
font-family: 隶书;
}
#div0{
width: 800px;
height: 100px;
border-width: 20px;
border-color: #ff0000;
border-style: outset;
padding: 100px;
margin: 20px;
}
body{
text-align: center;
}