Hallo,
ich hab heute das erstmals mit divs anstadt Tabellen gearbeitet.
Wie könnte es anderst sein, ich hab ein problem ^-^"
Ich will die KW liste zentrieren. (aber wie mach ich das?)
hier einmal die Indexdatei im editor
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29: | ';
for ($i = 0; $i <= 51; $i++) {
if ($i / 7 / $j == 1) {
echo '';
$j++;
};
$k = $i + 1;
if ($out2[$i] == 0) {
echo ' KW '.$k.' ';
}
else {
echo ' KW '.$k.' ';
};
};
echo ' ';
?> |
und dann ncoh die CSS
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41: | body {
background-color: #D9D9D9;
margin-left: 10px;
margin-top: 50px;
margin-right: 0px;
margin-bottom: 0px;
}
div{
color: #000000;
float: left;
font-size: 18px;
font-family: Tahoma, Arial, Sans-Serif;
text-decoration: none;
text-align: center;
vertical-align: top;
margin-left: 1px;
margin-top: 1px;
margin-right: 2px;
margin-bottom: 0px;
}
div.green {
background-color: #189C18;
font-weight: bold;
height: 40px;
width: 80px;
}
div.red {
background-color: #DE1818;
font-weight: none;
font-style: italic;
height: 40px;
width: 80px;
}
div.leer {
clear: both;
text-align: center;
} |
Danke für euer interesse.
---
It's not a bug, it's only an undocomended feature.