1、求一个网页制作高手用div+css做一个网页布局 急 谢谢!!!!!!!!!!!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
#containt{ height:530px; width:400px; margin:0 auto; border:1px solid #000000;}
#top{ height:100px; width:380px; margin-top:7px; margin-left:9px;}
#top_left{ height:100px; width:138px; float:left; border:1px solid #000000; border-right:none;}
#top_right{ height:100px; width:238px; float:left; border:1px solid #000000;}
#content{ height:50px; width:380px; margin-top:5px; margin-left:9px; border:1px solid #000000;}
#bottom{ height:350px; width:380px; margin-top:5px; margin-left:9px;}
#bom_left{ height:350px; width:138px; float:left; border:1px solid #000000;}
#bom_right{ height:350px; width:235px; float:left; border:1px solid #000000; margin-left:3px;}
.b_r_div{ height:100px; width:68px; margin-left:6px; float:left; margin-top:5px; border:1px solid #000000;}
#b_r_bottom{ height:120px; width:225px; margin-left:5px; float:left; margin-top:5px; border:1px solid #000000;}
</style>
</head>
<body>
<div id="containt">
<div id="top">
<div id="top_left"></div>
<div id="top_right"></div>
</div>
<div id="content"></div>
<div id="bottom">
<div id="bom_left"></div>
<div id="bom_right">
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div id="b_r_bottom"></div>
</div>
</div>
</div>
</body>
</html>
2、求网页设计,制作一个网页DIV+CSS布局的。
你想要做什么样的页面呢?我是网页美工,说清楚你的要求。我的qq是949411477 ,如果写页面可以找我。
3、用div+css设计一个页面布局
<style>
.head{
width:100%;
height:60px;
}
.main{
width:70%;
height:400px;
float:left;
}
.main{
width:30%;
height:400px;
float:right;
}
.footer{
width:100%;
height:60px;
}
</style>
<div class ="head">这里是head区域</div>
<div class ="main">这里是主要内容区域</div>
<div class="main_left">这里是右侧区域</div>
<div class="footer">这里是页脚区域</div>
4、div+css网页制作作业
我有大二时做的dreamweaver的网页作业。有20份作业的源文件。任你挑选。
邮箱我就不单独发了,为了方便大家下载参考。
我把网页作业源文件打包上传到我的百度网盘。可以直接下载,不需要注册,也不需要积分。
网盘的下载地址,公布于本人的百度空间的文章中。
找不到或者有什么问题的可以私信我
5、用html+div+css制作田字格网页布局
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
.divL{
float: left;background-color: yellow;width: 120px;height: 120px;
}
.divLT{
margin: 50px;
}
.divLB{
margin: 0px 50px 50px;
}
.divR{
float: right;background-color: yellow;width: 120px;height: 120px;
}
.divRT{
margin: 50px 50px 50px 0px
}
.divRB{
margin: 0px 50px 50px 0px;
}
.divTB{
background-color: #005580;border-color: #000000;width: 550px;height: 50px;
}
.divLR{
width: 80px;height: 390px;background-color: #008000;display: table-cell;
}
</style>
</head>
<body>
<div class="divTB"></div>
<div style="display: table;width: 550px;">
<div class="divLR"></div>
<div class="divL divLT"></div>
<div class="divR divRT"></div>
<div class="divL divLB"></div>
<div class="divR divRB"></div>
<div class="divLR"></div>
</div>
<div class="divTB"></div>
</body>
</html>

写的可能不太行,不知道满不满足你的要求
6、网页设计 DIV+CSS
肯定要裁剪的,但不说裁剪好往dw里倒,文字还要单独的div+css定位写在背景上
定位的时候尽量用div+css定位框架
table用来存数据更合适的
7、如何快速用css加div做一个简单网页
1
在桌面建立一个index.htm的文件和main.css的文件,当然你也可以不用main.css的文件,但是为了方便操作,还是建一个吧。只要把记事本另存为就可以了。
2
做好这两个文件后我们把网页的基础代码写上去,并使index文件受到main.css的控制,我们右键选择用记事本打开index文件输入代码,并在head里写上<link href="main.css" type="text/css" rel="stylesheet">使它受到main.css控制
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
3
下面我们去main.css写一些属性看看是不是能控制index文件。我希望整个页面是粉色的,看上去温馨,我在main.css里写上*{background:#FF66FF}看看。我们打开index文件看看是不是在浏览器上是不是粉色的。在浏览器上是粉色的,表示已经受到css样式表的控制了。
4
下面我们进行布局一般网页都是3层一级,所以我们需要div布局了在body里面写一般我会先分为3层
<html>
<head>
<title></title>
<link href="main.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="top">
<div id="top1"></div>
<div id="top2"></div>
<div id="top3"></div>
</div>
</body>
</html>
5
布局好后我们需要去定义属性了,这里我只是简单的定义了一下
*{background:#FF33FF}
#top{background:#FFFF99; height:1000px; width:800px; margin-left:auto; margin-right:auto}
#top1{background:#66FFFF; height:50px; width:800px;}
#top2{background:#FF00CC; height:400px; width:800px}
#top3{background:#FF9933; height:550px; width:800px}
定义好了我们打开预览一下看看,图片是不是居中和分成3块了。当然,颜色只是为了方便看清楚,可以不写。
6
其实做网页就是不断的画框,只要知道布局和定义属性就可以了,下面我们就整个做一下,因为我的有一些是一样的,可以用class调用,class=baidu这个只是随便写的,你爱等于什么就等于什么
<html>
<head>
<title></title>
<link href="main.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="top">
<div id="top1">这里都是我截图的照片</div>
<div id="top2">
<div class="baidu"></div>
<div class="baidu"></div>
</div>
<div id="top3">
<div class="baidujingyan"></div>
<div class="baidujingyan"></div>
</div>
</div>
</body>
</html>
7
下面我们再去定义他的属性,当然我只是简单的定义一下
*{background:#FF33FF}
#top{background:#FFFF99; height:1000px; width:800px; margin-left:auto; margin-right:auto}
#top1{background:#66FFFF; height:50px; width:800px; text-align:center; line-height:50px; font-size:30px}
#top2{background:#FF00CC; height:400px; width:800px}
#top3{background:#FF9933; height:550px; width:800px}
.baidu{background:#FF6666; height:380px; width:380px; float:left; margin:10px}
.baidujingyan{background:#FFCC00; height:530px; width:380px; float:left; margin:10px;}
8
因为我这个是我截图相册的网页,下面我们就放照片吧,这里我偷个懒,把照片都放在桌面了,所以不用连接照片地址了。
<html>
<head>
<title></title>
<link href="main.css" type="text/css" rel="stylesheet">
</head>
<body>
<div id="top">
<div id="top1">这里都是我老婆的照片</div>
<div id="top2">
<div class="baidu"><img src="QQ图片20141212090452.jpg"></div>
<div class="baidu"><img src="QQ图片20141212090346.jpg"></div>
</div>
<div id="top3">
<div class="baidujingyan"><img src="QQ图片20141212090224.jpg"></div>
<div class="baidujingyan"><img src="QQ图片20141212090255.jpg"></div>
</div>
</div>
</body>
</html>
如果图片不在同一层目录,就需要连接到图片地址
9
这样一个网页就做好了,如果需要制作精美的网页,就需要不断的进行div布局和css样式的规定了。
10
下面我来说说网页制作的定义,网页的制作只要会使用div不停的布局,不停的定义他的属性,基本静态的网页就是这样做出来的
8、div css网页设计实例?
以发送至您的邮箱
9、div+css网页设计
这是FLASH 轮换广告,,只是这个做得比较好看,,现在FIASH轮换广告非常实用,,很多网站都会用到,建议你去网上搜索一下flash轮换广告的制作视频,其实非常简单,代码用得很少,一看就会!!但是想要到达你给的那种效果,应该要精通flash的高手才行,其实我觉得不需要做得那么华丽,能实现轮换效果就行了!!!