i have script with LTR css and i want this in RTL
that site have both RTL and LTR
this is LTR code:
.search-form input.span6
{
float:left;
margin-left: 0px;
}
and i have to have above code for RTL
.search-form input.span6
{
float:right;
margin-right: 0px;
}
how can have margin-left without value?