第五步:网页主要框架之外的附加结构的布局与表现:
第五步主要介绍除网页主要框架之外的附加结构的表现(Layout),包括以下内容: 1.主导航条;
2.标题(heading),包括网站名和内容标题; 3.内容;
4.页脚信息,包括版权,认证,副导航条(可选)。
加入这些结构时,为了不破坏原有框架,我们需要在css文件\标签(TAG)下加入: .hidden { display: none; }
\即我们加入的类(class),这个类可以使页面上任意属于hidden类的元素(element)不显示。这些会在稍后使用,现在请暂时忘记它。 现在我们加入标题(heading):
先回到HTML的代码,到是我们常用的html标题代码。比如我们一般用网站名,网站副标题,内容主标题等。我们往html文件的Header层(Div)加入: Enlighten Designs
刷新一下页面,你就可以看到巨大的标题,和标题周围的空白,这是因为>标签的默认大小和边距(margin)造成的,先要消除这些空白,需要加入: h1 {
margin: 0; padding: 0; }
接下来是导航条:
控制导航条表现的css代码相对比较复杂,我们将在第九步或是第十步中详细介绍。现在html文件加入导航代码: About Services Portfolio Contact Us
(注:原教程使用了dl和dt,jorux在这使用了更常用的ul和li标签) 目前导航条的表现比较糟糕,但是要在以后的教程中介绍其特殊表现,故需要暂时隐藏导航条,于是加入: About Services Portfolio Contact Us
我们跳一步,先到页脚:
页脚包括两部分:左边的版权,认证和右边的副导航条。
我们先要让副导航条向右浮动,就像之前处理Sidebar和Content关系的一样,需要加入一个新的层(div): About - Services - Portfolio - Contact Us - Terms of Trade
理论上,我们可以控制源文件上的任意元素的浮动,但由于IE浏览器的BUG,被浮动层需要首先出现在源文件上,也就是说我们把副标题放在版权和认证的前面: About - Services - Portfolio - Contact Us - Terms of Trade
Copyright ? Enlighten Designs Powered by Enlighten Hosting and Vadmin 3.0 CMS
刷新你的页面,你将看到如下所示(点击看大图):
最后我们回到内容部分:用表现内容标题–\;用表现段落;用断行。 About
Enlighten Designs is an Internet solutions provider that specialises in
front and back end development. To view some of the web sites we have created view our portfolio.
We are currently undergoing a 'face lift', so if you have any questions or would like more information about the services we provide please feel free to contact us. Contact Us
Phone: (07) 853 6060 Fax: (07) 853 6060 Email:
info@enlighten.co.nz
P.O Box: 14159, Hamilton, New Zealand More contact information…
刷新页面可以看到在Content层中又出现一些空白,这是由于标签的默认边距(margin)造成的,我们必须消除这些恼人的空白,当又不想把网页中所 有的标签地边距都设为0,这就需要使用css的子选择器(\在html的文件结构中,我们想控制的标签( child
)是属于#content层( parent
)的,因此在css文件中写入: #content h2 { margin: 0; padding: 0; }
#content p { margin: 0;
padding: 0; }
这样我们就告诉浏览器,仅仅是隶属于content层的标签的margin和padding的值为0! 第六步:页面内的基本文本的样式(css)设置: 你是不是厌倦了那些大红大绿的背景,现在是去掉它们的时候了,只保留导航条的红色背景。真是难为您居然能坚持学习本教程到此,很好,再过几步,你就能很好了解css控制整个网页版面(Layout)的能力。 –言归正传–
先设置全局的文本样式: body {
font-family: Arial, Helvetica, Verdana, Sans-serif; font-size: 12px; color: #666666; background: #ffffff; }
一般我们把body标签放在css文件的顶端,当然你要是执意要把它放在尾部,浏览器不会和你计较。font-family内的顺序决定字体显示优先级, 比方如果所在计算机没有Arial字体,浏览器就会指向Helvetica字体,依次类推;color指字体颜色;background指背景颜色。 如果你都是按本教程的操作,应该能看到下图
你可以看到内容(content)的各块(block)之间的间隙太小了,而基于最初的设计,内容标题(即)和正文之间的间隙大概是15px,每个段落的间距也大概是15px,所以在css中写入: #content h2 { margin: 0; padding: 0;
padding-bottom: 15px; }
#content p {
margin: 0; padding: 0;
padding-bottom: 15px; }
然后需要让content层的四周都空出25px的间隙,这本来是件很简单的事,理论上我们只需在#content的css文件中加入padding: 25px;就行了,但是IE给我们上了\一课\它的固有BUG根本不能按我们的想象表现。解决这个问题有两种办法。第一种办法是区别浏览器写入两种代码 (HACK IE),但因为间隙(padding,在Dreamweaver中又叫填充)使用很频繁,所以我们用另一种办法。
我们往需要填充的层中加入padding层,它的功能仅限于显示间隙:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam gravida enim ut risus. Praesent sapien purus, ultrices a, varius ac, suscipit ut, enim. Maecenas in lectus.
Donec in sapien in nibh rutrum gravida. Sed ut mauris. Fusce malesuada enim vitae lacus euismod vulputate. Nullam rhoncus mauris ac metus. Maecenas vulputate aliquam odio. Duis scelerisque justo a pede. Nam augue lorem, semper at, porta eget, placerat eget, purus. Suspendisse mattis nunc vestibulum ligula. In hac habitasse platea dictumst.
同样的,再往html文件的content层中加入padding层。
由于padding层的功能仅是制造空隙,所以不要设置它的宽度,只需在css中添加: #sidebar-a { float: right; width: 280px; }
#sidebar-a .padding { padding: 25px; }
#content {
margin-right: 280px; }
#content .padding { padding: 25px; }
就像我们之前用的方法一样,我们只选择了类(class)为padding,且父类(parent)为#content或#sidebar-a的元素(element)。
接下来设置行距,content和sidebar-a的行距需要加宽,但在css中是没有行距(leading)这种属性(attribute)的,但是有行高(line-height)属性,因此往css中写入: #sidebar-a { float: right; width: 280px; line-height: 18px; }
#content {
margin-right: 280px;