一、前言
本实例以“美食”角色为主题设计,应用div+css布局、代码简单,为学生初等水平,是个不错的模板,供大家参考。【关注作者|获取更多源码(2000+个Web案例源码)|优质文章】;您的支持是我创作的动力!【点赞收藏博文】,Web开发、课程设计、毕业设计有兴趣的联系我交流分享,3Q!
二、网页文件
三、网页效果
以下为网页正文(节选示例):
四、代码展示
1.HTML
代码如下(节选示例):
<html lang="en">
<head>
<meta charset="utf-8">
<link href="css/style.css" rel="stylesheet" media="all" type="text/css" />
<title>中华美食</title>
</head>
<body>
<div class="head">
<div class="logo" style="height: 100%;"><img src="./images/bg01.jpg" width="1000" style="height: 100%;" /></div>
</div>
<div class="menu">
<ul class="center">
<li><a href="index.html">首页</a></li>
<li><a href="caixi.html">菜系</a></li>
<li><a href="xiangce.html">相册</a></li>
<li><a href="wenzhang.html">每日菜谱</a></li>
</ul>
</div>
<div class="content">
<div class="main"> <a href="info1.html">
<div class="index"> <img src="./images/img001.jpg" class="fl" width="200" /> <span>
<h3>中国美食文化概述</h3>
<p>在中国传统文化教育中的阴阳五行哲学思想、道家理学观念,儒家伦理道德观念,还有文化艺术成就、饮食审美风尚、民族性格特征诸多因素的影响下,创造出彪炳史册的中国烹饪技艺,形成博大精深的中国饮食文化。</p>
<p class="btn">查看更多>>></p>
</span>
<div class="clear"></div>
</div>
</a> <a href="info2.html">
<div class="index"> <img src="./images/img002.jpg" class="fl" width="200" /> <span>
<h3>中国美食地图,看这一篇就够了! </h3>
<p>出门旅游品尝各地美食也是不可或缺的一种体验,今天小编为大家带来一份中国美食地图,涵盖了主要的旅行省份,让大家在出行路上,找到最想吃的! </p>
<p class="btn">查看更多>>></p>
</span>
<div class="clear"></div>
</div>
</a>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<div class="video">
<video width="100%" height="570" controls="controls">
<source src="./media/v01.mp4" type="video/mp4" />
</video>
</div>
<div class="end">
<p>中华美食</p>
</div>
</body>
</html>
......
2.CSS
代码如下(节选示例):
@charset "utf-8";
/* CSS Document */
ul,li,h1,h2,h3,p {
padding:0;
margin:0;
list-style:none
}
a {
text-decoration:none;
color:#fff
}
html {
background:#fff
}
body {
width:1000px;
margin:0px auto;
line-height:21px;
background:#691717;
}
.clear {
clear:both
}
.menu li {
list-style:none
}
.head {
background:#fff;
text-align:center;
height:500px;
}
.menu {
clear:both;
background:#f3f3f3;
width:100%;
height:65px;
text-align:center;
}
.menu li a {
color:#691717;
display:block;
}
.menu li a:hover{ color:#000000}
ul {
height:100%;
}
.menu li {
box-sizing:border-box;
height:100%;
text-align:center;
display:inline-block;
padding:20px 0px;
font-size:24px;
width:25%;
float:left;
cursor:pointer;
}
.right {
float:right;
width:660px;
padding:20px
}
.left {
min-height:300px;
float:left;
width:260px;
padding:20px
}
.content {
background:#691717;
font-size:14px;
display:inline-block;
width:100%
}
.index {
clear:both;
padding:40px 0;
border-bottom:#ccc dashed 1px;
position:relative;
}
.end {
clear:both;
background:#691717;
color:#fff;
padding:20px 0;
text-align:center;
}
.pad {
padding:20px 70px;
display:block
}
.main {
margin:20px 30px;
line-height:30px
}
.main div {
min-height:20px
}
.index img {
margin-right:50px
}
.index h3 {
color:#fff;
font-size:18px;
margin-bottom:20px
}
.index .fr {
margin-right:0;
margin-left:50px
}
p {
color:#fff;
}
.title {
text-align:center;
color:#fff;
margin-bottom:30px;
padding:10px
}
.title h1 {
font-weight:normal;
}
.fl {
float:left
}
.fr {
float:right
}
.info h2 {
color:#fff;
margin:10px 0;
text-align:center;
}
.info {
width:23%;
height:350px;
float:left;
margin:10px;
text-align:justify;
}
.info img {
width:100%;
height:150px;
transition:.3s;
overflow:hidden;
/* transform:scale(1);
*/
}
.xc .info {
width:23%;
height:200px;
float:left;
margin:10px;
text-align:justify;
}
.tc {
text-align:center
}
h4 {
color:#fff;
border-bottom:1px solid #fff;
margin-top:10px;
}
.bar {
text-align:center;
background:#FFCCCC;
font-weight:bold;
padding:15px
}
......
标签:web,中华美食,color,text,align,height,html,fff,margin From: https://blog.csdn.net/A240307/article/details/137383900