时间:2021-05-08
一、background-attachment属性
在CSS中,使用背景附件属性background-attachment可以设置背景图像是随对象滚动还是固定不动。
语法:
background-attachment:scroll/fixed;
说明:
background-attachment 属性只有2个属性值。scroll表示背景图像随对象滚动而滚动,是默认选项;fixed表示背景图像固定在页面不动,只有其他的内容随滚动条滚动。
举例:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title> <style type="text/css"> #div1 { width:160px; height:1200px; border:1px solid gray; background-image:url("cartoongirl.gif"); background-repeat:no-repeat; background-attachment:fixed; } </style></head><body> <div id="div1"></div></body></html>在浏览器预览效果如下:
分析:
大家在浏览器中拖动右边的滚动条会发现,背景图片在页面固定不动。
在IE或者360中设置background-attachment之后不能设置background-position属性,不然图片没办法在浏览器显示。大家可以测试一下google浏览器、Firefox浏览器。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
css样式:复制代码代码如下:body{_background-attachment:fixed;_background-image:url(nothing);
前提是定义了background-image属性,然后用background-attachment来指明背景图的位置是固定于视口的,还是随着包含块移动的。可简单
去掉textArea的边框的css代码: overflow:auto; background-attachment:fixed; background
在css中,共有如下几个background属性属性描述CSSbackground在一个声明中设置所有的背景属性。1background-attachment设
效果fixedie6body{background-image:url(about:blank);background-attachment:fixed;/*必