9.求背景图片左边到#box盒子左边外框侧的距离
Posted flyingliao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9.求背景图片左边到#box盒子左边外框侧的距离相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>求背景图片左边到#box盒子左边外框侧的距离</title> <style type="text/css"> * { margin: 0; padding: 0; } #box{ width: 100px; height: 200px; background: pink; padding: 100px; border: 80px solid blue; background-image: url("img/1.png"); background-repeat: no-repeat; background-origin: content-box;/* 背景图片起始源的位置 */ background-position: -50px 0; /* 左右 上下*/ /* background-position 和margin (上下 ; 左右) 等不一样*/ } /*答案:130px*/ </style> </head> <body> <div id="box"></div> </body> </html>
以上是关于9.求背景图片左边到#box盒子左边外框侧的距离的主要内容,如果未能解决你的问题,请参考以下文章