最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
css设置背景固定不滚动效果的示例
时间:2022-06-25 10:05:13 编辑:袖梨 来源:一聚教程网
一、css设置背景不滚动的效果
css禁止背景滚动 - www.jbxue.com<111com.nettyle type="text/css"> *{ margin:0; padding:0;} html,body{ width:100%; height:100%; overflow:auto; position:relative;} .container{ width:100%; height:100%; overflow:auto;} .bg{ background:#000000;opacity:0.5; filter:alpha(opacity=50); position:absolute; z-index:1; overflow:auto; width:100%; height:100%; left:0; top:0;} .box{ position:absolute; left:50%; top:50%; z-index:11; line- color:#f60; font-weight:bold; font-size:20px;} .info{ position:absolute; left:-50%; top:-50%; z-index:10; text-align:center; border:1px solid #f00; background:#fff;} 我就不动
二、css设置body背景图片固定不动内容滚动
css中使body背景图片固定不动内容滚动:
style="background-attachment: fixed"
例子:
body { background-image: url(images/dbg.jpg); background-repeat: no-repeat; font-family: "宋体"; font-size: 12px; line-height: normal; font-weight: normal; color: #FFFFFF; background-attachment: fixed; }
三、css固定背景图片不滚动
例子:
CSS固定背景图片不滚动代码 - www.jbxue.com <111com.netv id="codefans_net">拖动滚动条,文字会消失,背景依然存在。