html 考勤页面 包含CSS
时间: 2023-07-01 16:09:40 浏览: 130
HTML 考勤页面可以包含 CSS 样式,通过 CSS 可以为页面元素添加样式,使其更加美观和易于使用。以下是一个简单的 HTML 考勤页面示例,其中包含了 CSS 样式。
```html
<!DOCTYPE html>
<html>
<head>
<title>考勤页面</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
h1 {
color: #333;
text-align: center;
}
table {
border-collapse: collapse;
margin: 0 auto;
background-color: #fff;
box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
}
th, td {
padding: 10px;
border: 1px solid #ddd;
text-align: center;
}
th {
background-color: #f2f2f2;
color: #333;
font-weight: bold;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>考勤记录</h1>
<table>
<thead>
<tr>
<th>姓名</th>
<th>日期</th>
<th>状态</th>
</tr>
</thead>
<tbody>
<tr>
<td>张三</td>
<td>2021-07-01</td>
<td>出勤</td>
</tr>
<tr>
<td>李四</td>
<td>2021-07-01</td>
<td>缺勤</td>
</tr>
<tr>
<td>王五</td>
<td>2021-07-01</td>
<td>迟到</td>
</tr>
</tbody>
</table>
</body>
</html>
```
在这个示例中,我们使用了 CSS 为页面元素添加样式。例如,我们为 `body` 元素设置了字体和背景颜色,为 `h1` 元素设置了文本颜色和居中对齐方式,为 `table` 元素设置了表格边框和阴影效果,为表头 `th` 元素设置了背景色和加粗效果,为表格中的偶数行设置了不同的背景颜色等。这些样式可以让页面看起来更加美观和易于使用。
阅读全文