编写一个经典的静态页面包括实现一个圣杯/双飞翼页面布局,包括header、footer、container、left、right五个部分。 页面使用独立CSS定义样式。 来介绍日常生活中常见的几种鸟类 页面内容包括至少一张张图片、两段字体/颜色不一样的文字介绍、有序/无序列表。
时间: 2023-06-20 12:04:29 浏览: 133
静态网站 页面的设计
3星 · 编辑精心推荐
很高兴为您提供这个经典的静态页面的代码。下面是HTML和CSS代码,实现了圣杯布局和双飞翼布局两种方式。
HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<title>常见鸟类介绍</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>常见鸟类介绍</h1>
</header>
<div class="container">
<div class="left">
<h2>麻雀</h2>
<img src="https://cdn.pixabay.com/photo/2014/11/23/11/55/sparrow-543321_1280.jpg" alt="麻雀">
<p>麻雀是一种常见的小鸟,身体小巧灵活,善于飞行和跳跃。</p>
<ul>
<li>体型小巧,灰褐色羽毛</li>
<li>飞行速度快,常在草地、公园活动</li>
<li>喜欢吃谷物、种子和昆虫</li>
</ul>
</div>
<div class="right">
<h2>喜鹊</h2>
<img src="https://cdn.pixabay.com/photo/2017/07/28/23/07/jay-2552789_1280.jpg" alt="喜鹊">
<p>喜鹊是一种美丽的鸟类,身体色彩鲜艳,常在树林、公园活动。</p>
<ol>
<li>羽毛色彩鲜艳,头顶有黑色羽冠</li>
<li>喜欢吃果实、昆虫和小动物</li>
<li>常在树上筑巢,每年繁殖一次</li>
</ol>
</div>
<div class="center">
<h2>白鹭</h2>
<img src="https://cdn.pixabay.com/photo/2016/08/05/10/42/egret-1571812_1280.jpg" alt="白鹭">
<p>白鹭是一种高雅的水鸟,长腿长嘴,常在湖泊、河流附近觅食。</p>
<ul>
<li>羽毛洁白,长腿长嘴</li>
<li>喜欢在水边觅食,常吃鱼类和小动物</li>
<li>常在树上或灌木丛中筑巢</li>
</ul>
</div>
</div>
<footer>
<p>版权所有:XXX公司</p>
</footer>
</body>
</html>
```
CSS代码:
```
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 20px;
}
.left, .right, .center {
flex-basis: 0;
flex-grow: 1;
padding: 10px;
box-sizing: border-box;
}
.left {
background-color: #f2f2f2;
order: 2;
}
.right {
background-color: #f2f2f2;
order: 3;
}
.center {
background-color: #f2f2f2;
order: 1;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
/* 双飞翼布局 */
.container2 {
margin: 20px;
padding: 0 200px 0 100px;
}
.left2 {
float: left;
width: 100%;
background-color: #f2f2f2;
margin-left: -100%;
}
.right2 {
float: left;
width: 100%;
background-color: #f2f2f2;
margin-left: -200px;
}
.center2 {
float: left;
width: 100%;
background-color: #f2f2f2;
}
```
以上代码实现了两种布局方式,您可以根据需要在HTML中选择使用哪种布局。其中,左侧和右侧的部分使用了`order`属性来改变它们在flex容器中的排列顺序。圣杯布局使用了flexbox,而双飞翼布局使用了浮动。在CSS代码中,我给双飞翼布局添加了`.container2`、`.left2`、`.right2`、`.center2`等新的类名,以区别于圣杯布局的类名。
阅读全文