I have wrapper id which i use for my entire page.
html
<div id="wrapper"> </div> css
#wrapper{ width: 960px; margin: 0 auto; } Now what i want to do is create a class for that id that i will use for pages that has max width full resolution.
html
<div id="wrapper" class="full-width> </di> css
#wrapper.full-width{ width: 100%; } Is this the right way to do it?