Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道使用带有背景位置的精灵的典型方法是使用左上角引用精灵中的图像并提供负坐标。我有一个用于按钮的圆角矩形,我想为矩形的右上角提供坐标,并让它在三角形右边缘的左侧重复 x。有什么想法吗?
从我认为您要问的内容来看,听起来您想使用此规则:
background-position: 100% 0;
或者
background: url(image.png) repeat-x 100% 0;
这应该推动背景图像,以便与它所在的任何元素的右侧匹配。