背景图像x px从右边缘

时间:2012-07-06 10:52:17

标签: css

我在网站上有各种宽度的<select>个元素。我想从选择宽度的右边缘定位背景图像13px。在伪代码中:

select {
    background-image: url(../images/select-arrow.png), 
    background-position: center (right - 13px);
}

我如何在CSS中执行此操作?

1 个答案:

答案 0 :(得分:11)

CSS3 redefines the background-property以便您可以说:

background-position: right 13px top; 

然而,browserupport不是最好的atm。

要解决此问题,您可以:

    <击>
  • 向图像本身添加透明像素并将其定位在右上角
  • 或在知道元素宽度后用javascript计算位置

编辑:You can safely use this feature now.