创建一个名为“style.css”的文件,并在其中添加样式规则
时间: 2024-02-17 22:01:59 浏览: 110
好的,下面是一个简单的样式表文件“style.css”的示例代码,您可以根据需要进行修改和完善。
```css
/* 全局样式 */
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-around;
align-items: center;
height: 80px;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 20px;
}
nav a:hover {
color: #ff0;
}
/* 首页样式 */
.intro {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
.intro img {
border-radius: 50%;
width: 200px;
height: 200px;
object-fit: cover;
object-position: center;
margin-bottom: 20px;
}
.intro h1 {
font-size: 36px;
margin: 0;
}
.intro p {
font-size: 20px;
margin: 0;
}
/* 关于我样式 */
.aboutme {
padding: 50px;
}
.aboutme h2 {
font-size: 36px;
margin-bottom: 20px;
}
.aboutme p {
font-size: 20px;
margin-bottom: 10px;
}
/* 作品集样式 */
.portfolio {
padding: 50px;
}
.portfolio h2 {
font-size: 36px;
margin-bottom: 20px;
}
.portfolio ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.portfolio li {
margin-bottom: 30px;
width: 30%;
}
.portfolio img {
width: 100%;
object-fit: cover;
object-position: center;
margin-bottom: 10px;
}
.portfolio p {
font-size: 18px;
margin: 0;
}
/* 博客样式 */
.blog {
padding: 50px;
}
.blog h2 {
font-size: 36px;
margin-bottom: 20px;
}
.blog ul {
list-style: none;
margin: 0;
padding: 0;
}
.blog li {
margin-bottom: 30px;
}
.blog h3 {
font-size: 24px;
margin-bottom: 10px;
}
.blog p {
font-size: 18px;
margin: 0;
}
/* 联系我样式 */
.contact {
padding: 50px;
}
.contact h2 {
font-size: 36px;
margin-bottom: 20px;
}
.contact form {
display: flex;
flex-direction: column;
}
.contact label {
font-size: 20px;
margin-bottom: 10px;
}
.contact input,
.contact textarea {
font-size: 16px;
padding: 10px;
margin-bottom: 20px;
}
.contact input[type="submit"] {
background-color: #333;
color: #fff;
cursor: pointer;
}
```
上面的代码中定义了一些全局样式,以及首页、关于我、作品集、博客、联系我等不同部分的样式规则。您可以根据需要进行修改和完善。同时,需要注意的是,样式表文件“style.css”需要与HTML文件放在同一个目录下。
阅读全文