background-attachment 网页背景固定
- 作者:网页模板
- 类型:文章教程
- 点击次数:
- 发布时间:2014-08-23 10:59
右上固定:
右下固定:
左上
左下
正中
右边
左边
上边
下边
(责任编辑:网页模板)
<style type="text/css"> <!-- body{ background-image:url("背景url"); background-position:100% 0%; background-repeat:no-repeat; background-attachment:fixed;} --> </style>------------------------
右下固定:
<!-- body { background-image:url("5.jpg"); background-position:100% 100%; background-repeat:repeat-y; background-repeat:no-repeat; background-attachment:right bottom; } -->------------------------
左上
<style type="text/css"> <!-- body{ background-image:url("背景url"); background-repeat:no-repeat; background-attachment:fixed;} --> </style>------------------------
左下
<style type="text/css"> <!-- body{ background-image:url("背景url"); background-position:0% 100%; background-repeat:no-repeat; background-attachment:fixed;} --> </style>-------------------------
正中
<style type="text/css"> <!-- body{ background-image:url("背景url"); background-repeat:no-repeat; background-attachment:fixed; background-position:center ;} --> </style>-----------------------
右边
<style type="text/css"> <!-- body{ background-image:url("背景url"); background-position:100% 0%; background-repeat:repeat-y; background-attachment:fixed;} --> </style>------------------
左边
<style type="text/css"> <!-- body{ background-image:url("背景url"); background-repeat:repeat-y; background-attachment:fixed;} --> </style>--------------
上边
<style type="text/css"> <!-- body{ background-image:url("背景url"); background-repeat:repeat-x; background-attachment:fixed;} --> </style>-----------------------
下边
<style type="text/css"> <!-- body{ background-image:url("背景url"); background-position:bottom; background-repeat:repeat-x; background-attachment:fixed;} --> </style>
(责任编辑:网页模板)
- 本文标签:
- background-attachment 网页背景固定