能不能帮我补充上面的css代码
时间: 2024-03-27 18:35:22 浏览: 68
当然可以,请参考以下的 CSS 代码:
```css
/* Reset styles for consistent look and feel */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Basic styles for HTML elements */
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 1rem;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin: 0 1rem;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
main {
padding: 2rem;
}
section {
margin-bottom: 2rem;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
}
h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
ul {
list-style: none;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem;
}
```
这是一个基本的 CSS 样式表,包括了网页的基本样式和布局。你可以根据自己的需求和喜好进行修改和扩展。同时,你还需要编写 JavaScript 代码来实现网页的交互功能。
阅读全文