设置body标签内的字体大小 行距 以及背景颜色
body {
font-size: 1.2rem;
line-height: 1.5;
background-color: #f7f7f7;
}
设置超链接的样式:
a {
color: #666;
text-decoration: none;
}
a:hover, a:active {
color: #0ae;
text-decoration: underline;
}
image.png
设置body标签内的字体大小 行距 以及背景颜色
body {
font-size: 1.2rem;
line-height: 1.5;
background-color: #f7f7f7;
}
设置超链接的样式:
a {
color: #666;
text-decoration: none;
}
a:hover, a:active {
color: #0ae;
text-decoration: underline;
}