用css设计一个美观的表格,表格内容包含用户名和密码
时间: 2024-03-25 18:35:45 浏览: 88
好的,以下是一个基本的样式设计:
```html
<table>
<thead>
<tr>
<th>用户名</th>
<th>密码</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" name="username"></td>
<td><input type="password" name="password"></td>
</tr>
</tbody>
</table>
```
```css
table {
border-collapse: collapse;
width: 100%;
max-width: 500px;
margin: 0 auto;
}
th, td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f2f2f2;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 6px 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin: 6px 0;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
cursor: pointer;
border: none;
border-radius: 4px;
padding: 12px 20px;
}
input[type="submit"]:hover {
background-color: #45a049;
}
```
这个表格使用了简单的边框和灰色背景色,表头使用了浅灰色背景色。输入框使用了圆角和灰色边框。最后,提交按钮使用了绿色的背景色和白色的文字颜色。
阅读全文