Code snippets - css
- Lists, without indents, with buttons, and over-handing firstline
-
-
ul {
list-style: disc outside none;
margin-left: 0;
padding-left: 1em;
}
ul.circle { list-style-type: circle; } /* for lists within lists */
li {
padding-left: 0.5em;
}
- pre :- with CR wrapping a line
-
-
pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
No comments:
Post a Comment