css div背景图片padding

div背景图片设置后,div的padding和背景图不同步

如下设置 background-position-x 即可

1
2
3
4
5
6
7
8
9
10
.logo {
padding-left: 15px;
height: 100%;
width: auto;
cursor: pointer;
background-size: contain;
background-image: url(/assets/images/logo.png);
background-repeat: no-repeat;
background-position-x: 15px;
}

更好的做法

1
background-origin: content-box;

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×