0

我有一个英文版自定义菜单的背景图像,它可以正常工作(这应该是顶层,所以我做了位置:相对)

 #custommenu {
background-image: url([[pix:theme|header]])  ;
position:relative;
left:-18px;
top:-8px;
background-repeat: no-repeat;
width: 997px;
height: 57px;
padding: 0;}

在 rtl.css 中我无法将图像向右移动

.dir-rtl#custommenu {
 float:right;
 right:-34px;

}

4

1 回答 1

0

嗨,我应该删除float:right;

像这样

.dir-rtl#custommenu {
 right:-34px;
}
于 2012-07-03T07:56:46.697 回答