为花木兰网页书写css代码
以下是一个简单的花木兰网页的CSS代码示例:
/* 设置页面背景颜色 */
body {
background-color: #f5f5f5;
}
/* 设置页面标题样式 */
h1 {
color: #333;
font-size: 28px;
font-weight: bold;
margin-top: 20px;
text-align: center;
}
/* 设置导航栏样式 */
nav {
background-color: #333;
height: 50px;
display: flex;
justify-content: space-around;
align-items: center;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 18px;
}
nav a:hover {
color: #f5f5f5;
}
/* 设置主要内容区域样式 */
main {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
/* 设置图片样式 */
img {
width: 300px;
height: 200px;
margin-bottom: 20px;
}
/* 设置页脚样式 */
footer {
background-color: #333;
color: #fff;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
}
/* 设置链接样式 */
a {
color: #333;
text-decoration: none;
}
a:hover {
color: #666;
}
``
原文地址: https://www.cveoy.top/t/topic/hbJb 著作权归作者所有。请勿转载和采集!