【CSS】· CSS列表、表格、背景、鼠标属性
第六章的主题包括:CSS列表、表格、背景和鼠标属性。
- CSS列表:
ul.circle {
list-style-type: circle;
}
ul.square {
list-style-type: square;
}
ol.upper-roman {
list-style-type: upper-roman;
}
ol.lower-alpha {
list-style-type: lower-alpha;
}
- CSS表格:
table {
border-collapse: collapse;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
- CSS背景:
div {
background-color: #f2f2f2;
padding: 10px;
margin: 10px 0;
}
/* 背景图片 */
body {
background-image: url('background.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
- CSS鼠标属性:
a:hover {
color: #ff0000;
text-decoration: underline;
}
button:active {
background-color: #4CAF50;
color: white;
}
这些代码示例展示了如何使用CSS来定制列表的项目符号、表格的边框和填充、页面的背景以及鼠标的悬停和激活状态的样式。
评论已关闭