Hi,
I use the following CSS to display a breadcrumb path:
#breadcrumbs li {
list-style: none;
display: inline;
padding-right: 0.2em;
color: #369;
}
#breadcrumbs li:before {
content: "→";
padding-right: 0.5em;
}
#breadcrumbs li.first:before {
content: "";
padding-right: 0em;
}
When the <li> are divided by line breaks, the result looks just as
desired. But without whitespace, the "before" character appears too
close to the preceding element. Example:
http://janeden.django/12293
How can I prevent the linebreaks from affecting the layout? The white-
space property obviously does not provide a setting to ignore
whitespace within an environment completely.
Thanks in advance,
Jan