Ok, I understand.
This won't affect the rendering of the stuff inside the ContentPlaceHolder though, will it? It would be ideal if I used the above div, then inside the placeholder I could just specify <h1>Heading</h1> - rendering the heading with the correct style applied (e.g.: myclass.h1). I do not think this is possible though, so what is the best way to separate the styles of the masterpage a contentplaceholder page?
The only idea I have is to link to the stylesheets in MasterPage.master and specify classes or ids, e.g.:
.cmaster {font-family: Arial; font-size: 24pt; color: black; }
.content {font-family: Verdana; font-size: 14pt; color: blue; }
then in the page:
<h1 class="content">Foo</h1>
etc, etc...
Anyone got a better way?
Thanks,
kreid