• 设为首页
  • 加入收藏
  • 我要投稿
  • 联系站长
  • 网站模板技术交流
当前位置:模板网首页 > 建站教程 > Div+Css >  background-attachment 网页正文

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 网页背景固定
精通CSS+DIV网页样式与布局PDF扫描版
css3 background-size属性 规定背景图的尺寸