当前位置:  开发笔记 > 前端 > 正文

我可以将CSS背景定位到"底部减去x像素"吗?

如何解决《我可以将CSS背景定位到"底部减去x像素"吗?》经验,为你挑选了1个好方法。

我需要将我的背景放在屏幕的底部.但在移动设备分辨率上,我希望将其显示为低于100px,例如"bottom minus 100px".是否可以在CSS中实现这样的功能?



1> tzi..:

是的,使用background-position属性的四值语法.

介绍

// This two-value declaration
background-position: center bottom
// Is equivalent of this four-value declaration
background-position: center 0px bottom 0px

免责声明:支持Chrome 25 +,Firefox 13 +,IE9 +,Safari 7+

在你的情况下

因此,您可以将背景定位为"底部减去100px":

background-position: center bottom -100px

例:

.container {
  height: 190px;
  padding: 1em;
  margin: 0 auto 1em;
  border: 1px solid #333;
  text-align: center;
  
  background-image: url('http://lorempixel.com/200/140/city/4');
  background-repeat: no-repeat;
  background-position: center bottom;
}
.plus {
  background-position: center bottom 20px;
}
.minus {
  background-position: center bottom -20px;
}
background-position:
center bottom
background-position:
center bottom 20px
background-position:
center bottom -20px
推荐阅读
臭小子
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有