Unreset.css restores default element styles which are reset by Eric Meyer's Reset.css. Simply add the class unreset
to the page element whose styles must be restored. Although unreset.css is specifically targeted to undo Eric Meyer's reset styles, it may also be used to undo styles by other reset stylesheets.
Unreset.css is based on Default style sheet for HTML 4 and the official Webkit UA stylesheet.
Include unreset.css in your page
<link rel="stylesheet" type="text/css" href="css/unreset.css">
Add the class unreset
to the elements needing to be unreset.
<div id="content" class="unreset">
<p>I use the default paragraph style.</p>
<ul>
<li>I will have a bullet point.</li>
<li>I will have a bullet point.</li>
</ul>
</div>
Tested on IE8-11, latest versions of Firefox, Chrome and Safari
Report bugs at https://github.com/binarystash/unreset-css/issues.