分享
 
 
 

web标准布局实例教程

王朝other·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

我相信来经典论坛学习标准的朋友,99%都不是为了进W3C,不是为了成为专业的研究人员,那么大家来的目的是什么呢?很简单,其实都是想通过标准的学习让自己多增加一项技能而已,让自己在找工作的时候不会在被“需要熟练掌握web标准”而难倒,在下面的实例中xhtml并没有什么语意,文章的目的只是让然大家能更好的掌握CSS中相对、绝对定位的用法(新手问此问题的确实很多),及如何有效的结合背景,实现比较复杂的布局。不足之处还望前辈们能指点一二,感谢!

第一步:

先来随便设计一个布局复杂点的(布局不规整)demo:

第二步:

我们来进行代码的编写

<HTML>

<HEAD>

<TITLE>model</TITLE>

<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">

<style>

html,body{

margin:0;

padding:0;

background:#A1A9B6 url(images/allbg.jpg);

text-align:center;

}

#main{

margin:0 auto;

position:relative; /*我是相对定位*/

width:780px;

height:659px;

background:url(images/model.jpg) no-repeat;

}

#main #menu{

position:absolute;

right:12px;

width:354px;

height:115px;

background:url(images/menu.gif) no-repeat;

}

#main #menu a#page,#main #menu a#about,#main #menu a#services,#main #menu a#contacts{

float:left;

width:112px;

height:30px;

}

#main #menu a#about{

width:80px;

height:55px;

}

#main #menu a#services{

width:70px;

height:80px;

}

#main #menu a#contacts{

width:80px;

height:115px;

}

#main #menu a:hover{

background: url(images/menu.gif) no-repeat;

}

#main #menu a#page:hover{

background-position: 0px -115px;

}

#main #menu a#about:hover{

background-position: -112px -115px;

}

#main #menu a#services:hover{

background-position: -192px -115px;

}

#main #menu a#contacts:hover{

background-position: -262px -115px;

}

#main h1{

position:absolute;/*我是绝对定位,我相对与我的上一级#main来进行定位,因为他设置了position:relative;如果在我的父一级中没有找到position:relative;那我就相对与body来定位了...*/

top:0;left:1px;

width:151px;

height:56px;

background:url(images/logo.jpg) no-repeat;

}

#main h2{

position:absolute;/*我也是绝对定位 我和上面提到的用法一样*/

top:133px;

right:7px;

width:404px;

height:190px;

background:url(images/about.gif) no-repeat;

}

#main h6{

position:absolute;/*我也是绝对定位 我和上面提到的用法一样*/

bottom:75px;

right:10px;

width:265px;

height:44px;

background:url(images/cars-logo.gif) no-repeat;

}

</style>

</HEAD>

<BODY>

<div id="main">

<div id="menu">

/*这个菜单是怎么工作的呢?

一张图是怎么能实现背景切换呢?

呵呵,其实也很简单?大家知道背景图象中有:图像横纵坐标位置设置,此例子也正是运用这个特性,将拥有不同ID的链接A的背景进行偏移,以达到背景切换的目的。*/

<a href="#" id="page" title="page"></a>

<a href="#" id="about" title="about"></a>

<a href="#" id="services" title="services"></a>

<a href="#" id="contacts" title="contacts"></a>

</div>

<h1></h1>

<h2></h2>

<h6></h6>

</div>

</BODY>

</HTML>

实际页面效果:

运行代码框

<HTML>

<HEAD>

<TITLE>model</TITLE>

<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">

<style>

html,body{

margin:0;

padding:0;

background:#A1A9B6 url(http://www.blueidea.com/articleimg/2006/07/3738/allbg.jpg);

text-align:center;

}

#main{

margin:0 auto;

position:relative;

width:780px;

height:659px;

background:url(http://www.blueidea.com/articleimg/2006/07/3738/model.jpg) no-repeat;

}

#main #menu{

position:absolute;

right:12px;

width:354px;

height:115px;

background:url(http://www.blueidea.com/articleimg/2006/07/3738/menu.gif) no-repeat;

}

#main #menu a#page,#main #menu a#about,#main #menu a#services,#main #menu a#contacts{

float:left;

width:112px;

height:30px;

}

#main #menu a#about{

width:80px;

height:55px;

}

#main #menu a#services{

width:70px;

height:80px;

}

#main #menu a#contacts{

width:80px;

height:115px;

}

#main #menu a:hover{

background: url(http://www.blueidea.com/articleimg/2006/07/3738/menu.gif) no-repeat;

}

#main #menu a#page:hover{

background-position: 0px -115px;

}

#main #menu a#about:hover{

background-position: -112px -115px;

}

#main #menu a#services:hover{

background-position: -192px -115px;

}

#main #menu a#contacts:hover{

background-position: -262px -115px;

}

#main h1{

position:absolute;

top:0;left:1px;

width:151px;

height:56px;

background:url(http://www.blueidea.com/articleimg/2006/07/3738/logo.jpg) no-repeat;

}

#main h2{

position:absolute;

top:133px;

right:7px;

width:404px;

height:190px;

background:url(http://www.blueidea.com/articleimg/2006/07/3738/about.gif) no-repeat;

}

#main h6{

position:absolute;

bottom:75px;

right:10px;

width:265px;

height:44px;

background:url(http://www.blueidea.com/articleimg/2006/07/3738/cars-logo.gif) no-repeat;

}

</style>

</HEAD>

<BODY>

<div id="main">

<div id="menu">

<a href="#" id="page" title="page"></a>

<a href="#" id="about" title="about"></a>

<a href="#" id="services" title="services"></a>

<a href="#" id="contacts" title="contacts"></a>

</div>

<h1></h1>

<h2></h2>

<h6></h6>

</div>

</BODY>

</HTML>

[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]

好了,这次的实例教程就结束了,希望对大家以后进行xhtml网页的设计,布局能有所帮助!

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有