I am trying to add the html5 elements(aside,article,section etc. in in my mark up but I really do not want to style the elements. SO I tried adding them above and below the div I use for styling but I am having trouble using the margin:0px css that would usually put the div to the very top of the body element but because the html5 tage are there it does not work(really should have saw that coming).
I wonder if there is another way to not style the tags but make it work. Liek perhaps nesting the element inside the div like :
<div id="content">
<article>
*content*
</article>
</div>
would that work semantic wise?