① 可以使用“相对定位”,position:relative;
② 注意坐标轴的移动方向:
向左移动:当然是正数->left:50px
向下移动:当然是正数->top:50px;
(这样记:既然要向下移动,当然是要远离top顶部了,自然top的属性值要正数;
既然要向右移动,就是远离左边了,left属性值自然要为正数!!!)
CSS定义背景无法向下移动很简单可以添加CSS样式。<style type="text/css"><!--
.bg {
background-attachment: fixed //设置背景固定
background-image: url(XXXX.jpg) //背景图片
background-repeat: no-repeat //背景不重复
background-position: center center //背景水平垂直居中
}
-->
</style>