Right to Left CSS Question
-
The Codex advice is to reverse left to right and vice versa for all instances of text-align, clear and float.
But what is the correct form for right to left CSS for the following:
.alignleft { float: left; } .alignright { float: right; }I’m thinking
.alignleft {
float: right;
}might not be right?
The topic ‘Right to Left CSS Question’ is closed to new replies.