段落首行缩进
p { text-indent: 3em; }
小型大写字母
h1 {
letter-spacing: 4px;
text-align: center;
font-variant: small-caps;
}
转化文字
h1 {
letter-spacing: 4px;
font-style: italic;
text-align: center;
text-transform: uppercase;
}
首字大写
<p><span class="drop">I</span>f you're painting with late</P>
.drop {
float: left;
font-size: 400%;
line-height: 1em;
margin: 4px 10px 10px 0;
padding: 4px 10px;
border: 2px solid #ccc;
background: #eee;
}
字距调整(又称作字母间隔)
h1 { letter-spacing: -2px; }
改变行高
body { line-height: 1.5em; }
