For example i have too classes
/* Img: Left */
img.aleft /* img[@class!="left"] */ {
position:relative;
float:left;
/* float:left; position:relative; */
}
/* Img: Right */
img.aright /* img[@class!="right"] */ {
position:relative;
float:right;
/* float:right; position:relative; */
}
how do i setup to switch between them? in other words, if i use img.aright and then use img.aleft, I want the img.aright to be removed.
any idea?