Skip to content

Instantly share code, notes, and snippets.

@4lun
Created July 9, 2013 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 4lun/5957695 to your computer and use it in GitHub Desktop.
Save 4lun/5957695 to your computer and use it in GitHub Desktop.
Useful CSS class for wysiwyg areas
.wysiwyg li {
margin: 0 0 5px;
}
.wysiwyg ul,
.wysiwyg ol {
margin: 0 0 15px;
padding: 0 0 0 20px;
list-style-position: outside;
list-style-image: none;
& ol,
& ul {
margin-top: 5px;
}
}
.wysiwyg ul {
list-style-type: disc;
}
.wysiwyg ul ul {
list-style-type: circle;
}
.wysiwyg ul ul ul {
list-style-type: square;
}
.wysiwyg ol {
list-style-type: decimal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment