这是我初学CSS的一些笔记,给大家参考。
body {
/* 字体大小 */
font-size: 16px;
/* 行高 */
line-height: 28px;
/* 字体 */
font-family: 'Microsoft Yahei';
}
h1 {
/* 文字不加粗 */
font-weight: 400;
/* 文字水平居中 */
text-align: center;
}
a {
/* 取消链接的下划线 */
text-decoration: none;
}
p {
/* 首行缩进2个字符 */
text-indent: 2em;
}
.gray {
font-size: 12px;
color: #888888;
text-align: center;
}
.search {
color: #666666;
}
.btn {
font-weight: 700;
}
.pic {
/* 想要图片居中对齐,得要对它的父亲p标签添加水平居中的代码 */
text-align: center;
}
.footer {
color: #888888;
font-size: 12px;
}