Here are 5 useful CSS tricks that I find myself using often, so I thought of sharing them here. Feel free to suggest others in the comments below.
#1 The quick reset
While there are a lot of lengthy and more comprehensive css resets available online, I’ve found that the following piece of code works just fine and provides pretty good reset capability.
body, div, span, p, a, img, ul, ol, li, table, th, tr, td, form, fieldset, legend, dl, dt, dd, blockquote, applet, object {border: 0}
h1,h2,h3,h4,h5,h6{font-weight:normal}
ul, ol {list-style-type:none}
hr {display: none}








