来做一个导航:
<style typr="text/css">
*{margin:0padding:0border:0}
.navbg{background:redheight:50px}
.nav{width:980pxheight:50pxmargin:0 auto}
li{float:leftmargin:10pxline-height:30px}
</style>
<div class="navbg">
<div class="nav">
<ul>
<li>首页</li>
<li>联系我们</li>
<li>留言</li>
</ul>
</div>
</div>
放在<body>里试一下便知
如果<style>里再加一句 body{width:980pxmargin:0 auto}则不能铺满屏幕,只有980px。
<styletype="text/css">
body
{background:#FFFFFF
url(背景图片地址)
repeat
center
0}
</style>
以上是合并成一条的写法
repeat-x是横向平铺
repeat-y是纵向平铺
repeat就是横向纵向都平铺
如果分开写也可以不写background-repeat:no-repeat不写怎么铺就是默认横向纵向一起平铺,如:
<style
type="text/css">
body
{background-color:#FFFFFFbackground-image:url(背景图片地址)background-position:center
0}
</style>
background-repeat: repeat-x使用“CSS 样式定义”对话框的“背景”类别可以定义 CSS 样式的背景设置。可以对网页中的任何元素应用背景属性。
加了background-repeat:repeat-x之后,背景现在只在X轴即横向进行了平铺操作,纵向并没有进行平铺。这便是css对于背景细节的控制之一。background-repeat是针对背景平铺的属性设置,可选的值包含:
代码如下:
repeat 即默认方式,完全平铺背景;
no-repeat 在X及Y轴方向均不平铺;
repeat-x 横向平铺背景;
repeat-y 纵向平铺背景。