当我使用以下 CSS 将图像添加到可排序字段时,它可以工作,但图像与已经存在的文本重叠。但我希望图像出现在文本的右侧。
.sortable a{
color:#FF9955;
background-image: url(images/sorter.png);
background-repeat: no-repeat;
background-position:right;
}
这是我的显示标签
<display:column sortProperty="geo_region" title="Geographical Region" sortable="true">
</display:column>
我将如何使它出现在文本的右侧?