Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

css properties reset

   1  
   2  html, body, div, span, applet, object, iframe,
   3  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
   4  a, abbr, acronym, address, big, cite, code,
   5  del, dfn, em, font, img, ins, kbd, q, s, samp,
   6  small, strike, strong, sub, sup, tt, var,
   7  b, u, i, center,
   8  dl, dt, dd, ol, ul, li,
   9  fieldset, form, label, legend,
  10  table, caption, tbody, tfoot, thead, tr, th, td {
  11  	margin: 0;
  12  	padding: 0;
  13  	border: 0;
  14  	outline: 0;
  15  	font-size: 100%;
  16  	vertical-align: baseline;
  17  	background: transparent;
  18  }
  19  body {
  20  	line-height: 1;
  21  }
  22  ol, ul {
  23  	list-style: none;
  24  }
  25  blockquote, q {
  26  	quotes: none;
  27  }
  28  
  29  /* remember to define focus styles! */
  30  :focus {
  31  	outline: 0;
  32  }
  33  
  34  /* remember to highlight inserts somehow! */
  35  ins {
  36  	text-decoration: none;
  37  }
  38  del {
  39  	text-decoration: line-through;
  40  }
  41  
  42  /* tables still need 'cellspacing="0"' in the markup */
  43  table {
  44  	border-collapse: collapse;
  45  	border-spacing: 0;
  46  }

css flash[:notice] style

   1  .notice {
   2  	background: #FFF6BF;
   3  	border-top: 2px solid #FFD324;
   4  	border-bottom: 2px solid #FFD324;
   5  	text-align: center;
   6  	margin: 10px auto;
   7  	padding: 5px 20px;
   8  	}
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS