首页 > Web开发 > 详细

css day2

时间:2016-03-28 16:50:08      阅读:153      评论:0      收藏:0      [点我收藏+]

1.  背景

  1.1背景的不重复  background-repeat:no-repeat;

    背景的横向重复  background-repeat:repeat-x;

    背景的纵向重复  background-repeat:repeat-y;

  1.2背景固定不随滑轮滑动而消失

    background-attachment:fixed;

  1.3背景放置位置定位

    百分比定位     position:50% 50%

    定位      position:center/top/bottom...(top默认为center top,right默认为center right等)

    像素定位    position:200px 200px

    但是对于火狐来说前两种都不能正常显示,只有加position-attachment:fixed的时候才能正常显示,但是加了fixed就固定了背景,所以推荐使用像素定位

  当整张背景图片上还出现了一张背景图片的时候,第二张图片一定要加no-repeat;

  eg:  background: green url(/i/eg_bg_03.gif) no-repeat fixed center; (在绿色的背景上存在了一张gif)

 

css day2

原文:http://www.cnblogs.com/swii/p/5329551.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!