I have below css classes and want to merge to one,
.classA {
height: 500px;
width: 800px;
}
.classB {
height: 800px;
}
.classB > div {
xxxx
yyyy
}
.classA > div {
xxxx
yyyy
}
Here 'ClassA > div' and 'classB > div' have the same properties. So i need to make this as single class to apply to div element.
Please help.