-
Notifications
You must be signed in to change notification settings - Fork 0
Directives
Irmmr edited this page Nov 26, 2024
·
3 revisions
/* rtl:ignore */
.simple-class {
float: right;
direction: ltr;
margin-right: 5px;
}.simple-class {
float: right;
direction: ltr;
margin-right: 5px;
}/* rtl:ignore:float,direction */
.simple-class {
float: right;
direction: ltr;
margin-right: 5px;
}.simple-class {
float: right;
direction: ltr;
margin-left: 5px;
}/* rtl:remove */
.simple-class {
float: right;
direction: ltr;
margin-right: 5px;
}
a { color: red; }a { color: red; }/* rtl:remove:float,margin-right */
.simple-class {
float: right;
direction: ltr;
margin-right: 5px;
}.simple-class {
direction: rtl;
}/* rtl:rename:.my-class */
.simple-class {
float: right;
direction: ltr;
margin-right: 5px;
}.my-class {
float: left;
direction: rtl;
margin-left: 5px;
}/* rtl:discard:.simple-class */
.simple-class, #id {
float: right;
}#id {
float: left;
}/* rtl:raw:
font-size: 12px;
color: red;
*/
.simple-class {
float: right;
}.simple-class {
float: left;
font-size: 12px;
color: red;
}You can take a look at the PHP CSS Parser project: