如何用DIV+CSS进行网页样式布局

在html网页编辑中,对于新手来讲,接触最多的就是div+css;那么如何使用div+css就行网页简单布局呢

操作方法

  • 01

    一个网页设计时,我们可以将一个页面设置为头部,中间,和底部三部分;  头部有分为店招(logo)和导航等 中间既内容部分,内容也可一个整体,也可左右分离, 底部来页面结尾,一般写版权信息,友情链接等

头部编辑

  • 01

    店招: <!doctype html> <html> <head> <meta charset="utf-8"> <title>淘宝助手网</title> <style> #top{ width:1200px; height: auto; margin:0 auto; color:#FFF;} #logo{ width:100%; height:100px; background: #003; } </style> </head> <body> <div id="top"> <div id="logo">店招</div> <div id="nav">导航</div> </div> <!--------头部------------> <div id="centre"> <div id="centreLeft">内容左</div> <div id="centreRight">内容右</div> </div> <!--------中间-------------> <div id="bottom">底部</div> <!-----------底部----------------> </body> </html>

  • 02

    导航: <!doctype html> <html> <head> <meta charset="utf-8"> <title>淘宝助手网</title> <style> a,ul,li,div,span,td{ padding:0; margin:0;} #top{ width:1200px; height: auto; margin:0 auto; color:#FFF;} #logo{ width:100%; height:100px; background: #003; } #nav{ width:100%; height:30px; background:#300} a{ text-decoration: none; display:block;den} ul li{list-style: none;} #nav>ul>li{ float:left; margin-left: 50px; line-height:30px; } #nav>ul>li>a{ color:#FFF; font-weight:900px} </style> </head> <body> <div id="top"> <div id="logo">店招</div> <div id="nav"> <ul> <li><a href="" title="" target="_blank">淘宝</a></li> <li><a href="" title="" target="_blank">图片</a></li> <li><a href="" title="" target="_blank">视频</a></li> <li><a href="" title="" target="_blank">资料下载</a></li> <li><a href="" title="" target="_blank">视频下载</a></li> </ul> </div> </div> <!--------头部------------> <div id="centre"> <div id="centreLeft">内容左</div> <div id="centreRight">内容右</div> </div> <!--------中间-------------> <div id="bottom">底部</div> <!-----------底部----------------> </body> </html>

    内容

    • 01

      <!doctype html> <html> <head> <meta charset="utf-8"> <title>淘宝助手网</title> <style> a,ul,li,div,span,td{ padding:0; margin:0;} #top{ width:1200px; height: auto; margin:0 auto; color:#FFF;} #logo{ width:100%; height:100px; background: #003; } #nav{ width:100%; height:30px; background:#300} a{ text-decoration: none; display:block;} ul li{list-style: none;} #nav>ul>li{ float:left; margin-left: 50px; line-height:30px; } #nav>ul>li>a{ color:#FFF; font-weight:900px} /*******===================头====================************/ #centre{  margin:0 auto; width:1200px; height:auto; } #centreLeft{ float:left; width:70%; height:500px;border:1px #333333 solid;} #centreRight{ float: right; width:27%; height:400px;border:1px #333333 solid;} </style> </head> <body> <div id="top"> <div id="logo">店招</div> <div id="nav"> <ul> <li><a href="" title="" target="_blank">淘宝</a></li> <li><a href="" title="" target="_blank">图片</a></li> <li><a href="" title="" target="_blank">视频</a></li> <li><a href="" title="" target="_blank">资料下载</a></li> <li><a href="" title="" target="_blank">视频下载</a></li> </ul> </div> </div> <!--------头部------------> <div id="centre"> <div id="centreLeft">内容左</div> <div id="centreRight">内容右</div> </div> <!--------中间-------------> <div id="bottom">底部</div> <!-----------底部----------------> </body> </html>

      底部

      • 01

        <!doctype html> <html> <head> <meta charset="utf-8"> <title>淘宝助手网</title> <style> a,ul,li,div,span,td{ padding:0; margin:0;} #top{ width:1200px; height: auto; margin:0 auto; color:#FFF;} #logo{ width:100%; height:100px; background: #003; } #nav{ width:100%; height:30px; background:#300} a{ text-decoration: none; display:block;} ul li{list-style: none;} #nav>ul>li{ float:left; margin-left: 50px; line-height:30px; } #nav>ul>li>a{ color:#FFF; font-weight:900px} /*******===================头====================************/ #centre{  margin:0 auto; width:1200px; height:auto; overflow: hidden } #centreLeft{ float:left; width:70%; height:500px;border:1px #333333 solid;} #centreRight{ float: right; width:27%; height:400px;border:1px #333333 solid;} /***********==============内容===================*******/ #bottom{ margin:0 auto; width:1200px; height:200px; border:1px #333333 solid; margin-top:20px; } /***********==============底部===================*******/ </style> </head> <body> <div id="top"> <div id="logo">店招</div> <div id="nav"> <ul> <li><a href="" title="" target="_blank">淘宝</a></li> <li><a href="" title="" target="_blank">图片</a></li> <li><a href="" title="" target="_blank">视频</a></li> <li><a href="" title="" target="_blank">资料下载</a></li> <li><a href="" title="" target="_blank">视频下载</a></li> </ul> </div> </div> <!--------头部------------> <div id="centre"> <div id="centreLeft">内容左</div> <div id="centreRight">内容右</div> </div> <!--------中间-------------> <div id="bottom">底部</div> <!-----------底部----------------> </body> </html>

      (0)

      相关推荐

      • div+css网页设计基础教程

        div+css是一个网页设计师,程序员必经之路,是网站建设的基础!div+css是网页设计的最重要的元素. 操作方法 01 一.准备工作,电脑一套,Dreamweaver(网页设计软件) Dreamw ...

      • div+css经典布局教程

        在网页制作中,有许多的术语,例如:CSS.HTML.DHTML.XHTML等等.在下面的文章中我们将会用到一些有关于HTML的基本知识,而在你学习这篇入门教程之前,请确定你已经具有了一定的HTML基础 ...

      • Dreamweaver 怎么网页布局 div css布局

        div+css布局已经成为当前网页布局的潮流,通过盒子模型和浮动.定位来控制页面布局比以前的表格布局容易控制多了.如何用Dreamweaver实现div+css网页布局呢.小编为你分享我的. 操作方法 ...

      • DIV+CSS 网页布局常用的书写规范

        DIV+CSS 网页布局常用的书写规范 文件命名规范: 01 全局样式:global.css :框架布局:layout.css :字体样式:font.css :链接样式:link.css :打印样式: ...

      • 网页中如何用HTML/CSS实现文字居中于图片

        在网页设计布局中,很多网页设计者都会遇到如何让文字居中于图片的问题.其实,实现这一过程比较简单,只要让图片作为背景图片,再设置文字在 垂直和水平方向上的居中.下面,小编通过一个简单实例,结合自己的,来 ...

      • div+css浮动布局怎么用

        Div+css布局在网页设计中很常见,而布局中也经常会用到浮动(float)这个属性,那么div+css怎样浮动布局呢?一起来学习一下吧! 操作方法 01 首先,在一个新的HTML文件里面书写一个id ...

      • div+css怎么布局

        div+css布局现在是主流,能提高网页加载速度,提高后期代码维护效率. 操作方法 01 div 所谓<div>标签我们可以理解为一个盒子. 例如:<div class=" ...

      • HTML网页浮动布局怎么用,div float布局怎么用

        float布局在PC端布局用得算是普遍,现在小编我就分享一下 float浮动布局的,希望可以帮助各位宝宝们,这样宝宝们就知道 网页浮动布局怎么用了. 操作方法 01 如图,先设定一个大容器,里面有两个 ...

      • 怎样用CSS制作响应式布局

        现阶段,随着互联网的发展,人们浏览网页的方式也不仅仅是在电脑PC端了,而更多的是移动端用户.因此,前端开发者面临的问题是,应该怎样开发出适应不同用户的浏览体验的网页呢?响应式布局因此应运而生. 响应式 ...