After creating some simple pages, I included four html divs in one of the basic pages and also installed the cssinjector module. However, when attempting to write CSS code in cssinjector, it does not seem to be applying correctly on the width and height attributes in the HTML code.
The HTML code looks like this:
<div class=box1> </div>
<div class=box2> </div>
<div class=box3> </div>
Here is the CSS code being used:
.box1 {
width:300px;
height:230px;
}
.box2 {
width:300px;
height:230px;
}
.box3 {
width:300px;
height:230px;
}