<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>设置行高 line-height</title>
</head>
<body>
<style>
div{
width:200px;
height:100px;
background:#ddd;
text-align: center;
line-height:100px;
}
</style>
<div>
九月九日忆山东兄弟
</div>
</body>
</html>
本节内容非常简单,只讲了一个属性line-height,属性值为像素。
|