enjoy
Tue 29 June 2010, 08:05 pm GMT +0200
I have a style sheet a file A.css
.class1 {
font-weight: bold;
color: #cc3333;
text-decoration: underline;
}
I want to copy class1 style sheet information to another
like class2 = class1
.class1 {
font-weight: bold;
color: #cc3333;
text-decoration: underline;
}
I want to copy class1 style sheet information to another
like class2 = class1