<h1>通讯录</h1> <button class="add-btn">添加联系人</button> <table> <thead> <tr> <th>姓名</th> <th>电话</th> <th>邮箱</th> <th>操作</th> </tr> </thead> <tbody> <!-- 数据渲染 --> </tbody> </table> <!-- 弹出层,用于添加或编辑联系人 --> <div id="modal" style="display: none;"> <form> <div class="form-group"> <label for="name">姓名</label> <input type="text" id="name" name="name" required> </div> <div class="form-group"> <label for="phone">电话</label> <input type="text" id="phone" name="phone" required> </div> <div class="form-group"> <label for="email">邮箱</label> <input type="text" id="email" name="email" required> </div> <button id="save-btn">保存</button> <button id="cancel-btn">取消</button> </form> </div>帮我给这个页面设置一个CSS样式
时间: 2023-07-15 21:10:21 浏览: 102
好的,以下是一个简单的CSS样式,你可以根据需要进行修改:
```css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1 {
text-align: center;
}
.add-btn {
margin-bottom: 20px;
}
table {
border-collapse: collapse;
width: 100%;
}
table th,
table td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
}
table th {
background-color: #f2f2f2;
}
table tr:hover {
background-color: #f5f5f5;
}
.form-group {
margin-bottom: 10px;
}
label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"] {
width: 100%;
padding: 8px;
border-radius: 4px;
border: 1px solid #ccc;
box-sizing: border-box;
margin-bottom: 10px;
}
button {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
margin-right: 10px;
}
#save-btn {
background-color: #4CAF50;
}
#cancel-btn {
background-color: #f44336;
}
```
将这段CSS样式复制到你的CSS文件中或者直接写在页面的`<style>`标签里即可。
阅读全文