Hallo zusammen,
ich habe eine Frage bzgl. der Strukturierung einer CSS für einen Tag Cloud Quellcode, welcher derzeit noch nicht die Formatierung aus der ausgelagerten CSS Datei übernimmt:
HTML Datei:
<ul id="cloud">
<li><a href="/aaa.htm" class="tag4">Thema 00</a></li>
<li><a href="/bbb.htm" class="tag3">Thema 11</a></li>
<li><a href="/ccc.htm" class="tag7">Thema 22</a></li>
<li><a href="/ddd.htm" class="tag2">Thema 33</a></li>
<li><a href="eee.htm/" class="tag2">Thema 44</a></li>
</ul>
CSS Datei:
/* Tag Cloud */
cloud
{
padding:2px;
line-height:3em;
text-align:center;
margin:0;
}
cloud a
{
padding:0px;
}
cloud li
{
display:inline;
}
cloud.tag1
{
font-size:0.7em;
font-weight:100;
}
cloud.tag2
{
font-size:0.8em;
font-weight:200;
}
cloud.tag3
{
font-size:0.9em;
font-weight:300;
}
cloud.tag4
{
font-size:1.0em;
font-weight:400;
}
cloud.tag5
{
font-size:1.2em;
font-weight:500;
}
cloud.tag6
{
font-size:1.4em;
font-weight:600;
}
cloud.tag7
{
font-size:1.6em;
font-weight:700;
}
cloud.tag8
{
font-size:1.8em;
font-weight:800;
}
cloud.tag9
{
font-size:2.2em;
font-weight:900;
}
cloud.tag10
{
font-size:2.5em;
font-weight:900;
}
Es wäre schön wenn mir hier jemand eine Erklärung für das nicht funktionieren bzw. einen Korrekturvorschlag machen könnte.
Schon vorab vielen Dank.
Chris