@media screen and (min-width: 800px) {
.div {
position: absolute
right:0
}
}
@media screen and (max-width: 800px) {
.div {
position: absolute
left:600px
}
}
以上样式须在谷歌chrome等对css3支持较好的浏览器中测试。
背景的上左边距一直都是用background-position:10px 20px 30px 40px(上-右-下-左)顺时针顺序margin是div的外边距 padding是div的内边距,与图片是没有关系的。