Site Development - Beta
This template just uses sibling selectors to select Source one, the Footer, Source two and the Clearing element. This type of selecting is not for the fainhearted since the style for Source one also applies to Source two and the style for the Footer also applies for the Clearing element. In IE though this is tricky since I have include ordinary HTML. So the following selector:
div+div+div {}
This also styles the next element which is futher styled and overruled by specificity by:
div+div+div+div {}
Below is an image showing the schematic layout of the XHTML structure of this page.
For IE I must include this.
div+div+*+div {}
div+div+*+div+*+div {}
To be continued.....
