You can use CSS reset and apply it only to a subset of your page. For example, this one .
My page <div id="no-css"> blah blah this has no css </div>
Of course you should cover everything in reset, for example:
ol, ul { list-style: none; }
it should be:
#no-css ol, #no-css ul { list-style: none; }
To simplify this, I recommend using a CSS framework, such as Less , which simplifies things like this:
#no-css{ }
Using this less code, you can either use less, or simply generate a new reset.css file and use it normally.
Of course, you can also find the specific reset element , but this solution allows you to choose any reset that you like best.
Another solution is to include your page in an iframe.
marcgg
source share