继续美化下这个评论区
时间: 2024-01-15 20:04:33 浏览: 107
好的,以下是美化后的评论区HTML代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>评论区</title>
<style>
body {
background-color: #f3f3f3;
font-family: Arial, sans-serif;
}
h1, h2 {
text-align: center;
color: #444;
}
form {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0px 0px 10px #ccc;
margin-bottom: 20px;
}
label {
display: inline-block;
width: 80px;
font-weight: bold;
margin-bottom: 10px;
}
input[type="text"], textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 20px;
box-sizing: border-box;
font-size: 16px;
}
input[type="submit"] {
background-color: #4CAF50;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
ul {
list-style: none;
padding: 0;
margin: 0;
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 0px 10px #ccc;
padding: 20px;
}
li {
margin-bottom: 10px;
}
strong {
font-weight: bold;
color: #4CAF50;
}
</style>
</head>
<body>
<h1>欢迎来到评论区</h1>
<form>
<label for="name">昵称:</label>
<input type="text" id="name" name="name" required><br><br>
<label for="comment">评论:</label>
<textarea id="comment" name="comment" required></textarea><br><br>
<input type="submit" value="提交">
</form>
<h2>已有评论:</h2>
<ul>
<li><strong>小明:</strong>这篇文章写得很好!</li>
<li><strong>小红:</strong>非常有帮助,谢谢分享!</li>
</ul>
</body>
</html>
```
在这个示例中,我们添加了CSS样式来美化页面。具体的样式包括:
- 背景色和字体
- 标题的居中和颜色
- 表单的背景色、边框、圆角和阴影
- 标签和输入框的样式
- 提交按钮的样式和鼠标悬停效果
- 已有评论部分的样式和字体加粗
此外,我们还在输入框和提交按钮上添加了`required`属性,以确保用户必须填写昵称和评论内容才能提交评论。
阅读全文