dir_rtl dosn“t覆盖

时间:2012-07-03 07:48:45

标签: css3

我有自定义菜单的背景图片 在英文版本中,它可以工作o.k(这应该是顶层,所以我做了位置:相对)

 #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;

}

1 个答案:

答案 0 :(得分:0)

您好我应删除float:right;

就像这样

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