Your Ad Here

Posted By

rumremix on 07/14/11


Tagged

css list default style return values


Versions (?)

bringing back list styles in a section after they have been removed from section's parent


 / Published in: CSS
 

Following css brings back the list style for the class .tabViewer .tabContent

  1. .tabViewer .tabContent ul, .tabViewer .tabContent ol {margin-left: 20px; list-style-type: circle;}
  2. .tabViewer .tabContent ul li, .tabViewer .tabContent ol li {display: list-item; float:none; list-style-type:disc; }
  3. .tabViewer .tabContent ul li { list-style-type:disc; }
  4. .tabViewer .tabContent ol li { list-style-type:decimal; }

Report this snippet  

You need to login to post a comment.