个人介绍网页模板css
时间: 2023-07-25 09:44:32 浏览: 127
我自己个人介绍网页模板
当然,这是一个基本的 CSS 文件,可以为个人介绍网页模板提供一些样式:
```css
/* 头部样式 */
header {
background-color: #333;
color: #fff;
padding: 20px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
nav li {
float: left;
}
nav li a {
display: block;
color: #fff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav li a:hover {
background-color: #111;
}
/* 主要内容样式 */
main {
margin: 20px;
}
section {
margin-bottom: 20px;
}
h2 {
font-size: 24px;
margin-bottom: 10px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
margin-bottom: 20px;
}
h3 {
font-size: 20px;
margin-bottom: 10px;
}
p {
margin-bottom: 10px;
}
img {
max-width: 100%;
height: auto;
}
form {
margin-top: 20px;
}
label {
display: block;
margin-bottom: 5px;
}
input,
textarea {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
button[type="submit"] {
background-color: #333;
color: #fff;
padding: 10px;
border: none;
border-radius: 4px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #111;
}
```
你可以将其保存为一个 CSS 文件,然后在 HTML 文件中通过 `<link>` 标签引入:
```html
<link rel="stylesheet" type="text/css" href="style.css">
```
这样网页就会应用上述 CSS 样式,使得页面更加美观和易于阅读。你也可以根据自己的需求修改样式。
阅读全文