CSS整理总结2
/* 设置元素的基本字体和背景样式 */
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #f8f8f8;
color: #333;
line-height: 1.4; /* 设置行高以保持良好的可读性 */
}
/* 设置链接的默认颜色和鼠标悬停时的颜色 */
a {
color: #08c;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* 设置标题的样式 */
h1, h2, h3 {
line-height: 1.2;
letter-spacing: -1px;
margin-top: 0;
padding: 0;
color: #333;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: normal;
text-rendering: optimizeLegibility;
}
h1 {
font-size: 3em;
text-align: center;
}
h2 {
font-size: 1.2em;
}
/* 设置段落元素的样式 */
p {
margin: 0 0 1.4em 0;
}
/* 设置列表元素的样式 */
ul, ol {
padding-left: 2em;
margin: 0;
}
这个代码实例展示了如何设置网页的基本字体、背景色和链接样式,以及如何设置标题和段落元素的样式。同时,它还展示了如何使用text-rendering
属性来优化可读性。这些基本样式为构建一个有组织的和可读的网页布局奠定了基础。
评论已关闭