I'm not sure what exactly you are trying to do here, but are you trying to apply the same style to multiple elements (divs)? If so, you should use the css class. So your html will be
<div class="myClass"></div> <div class="myClass"></div> <div class="myClass"></div>
and css will be
.myClass { height:whatever; width:whatever; etc }
Michael
source share