css中背景图片的设置
作者:cmscn 日期:2005-07-14
不平铺:background-repeat: no-repeat;
横向平铺:background-repeat: repeat-x;
纵向平铺:background-repeat: repeat-y;
固定:background-attachment: fixed;
滚动:background-attachment: scroll;
水平居中:background-position: center;
水平居中并垂直居中:background-position: center center;
例如:
<style type="text/css">
<!--
.mybg {
background-image: url(背景图片和路径);
background-attachment: scroll;
background-position: center center;
}
-->
</style>
<body class="mybg">
评论: 7 | 引用: 0 | 查看次数: 1889
发表评论