0

当我使用以下 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>

我将如何使它出现在文本的右侧?

4

1 回答 1

0

向文本添加左浮动属性

于 2013-11-08T05:44:39.043 回答