Hallo,
ich habe eine Frage zum Ausrichten von Text. Hier erstmal der Code:
Und hier ein Auszug aus meinem CSS-File:
Das Problem ist, das die vertikale Ausrichtung des Textes funktioniert, aber die horizontale Ausrichtung nicht. Auch mit "margin-top" klappt es nicht. Wieso nicht?
(verwende im Moment IE 6)
Gruß
Arndtinho
ich habe eine Frage zum Ausrichten von Text. Hier erstmal der Code:
HTML:
<div id="left">
<div id="region">
<font class="main">Regionen</font><br>
<font class="sub">Reg 1</font><br>
<font class="sub">Reg 2</font><br>
<font class="sub">Reg 3</font>
</div>
</div>
Code:
#region {
margin: 30px 10px;
width: 150px;
height: 150px;
border-style: dashed;
border-color: #3366FF;
border-width: 1px;
}
.main {
margin: 10px 15px;
font-family: Arial;
font-size: 14px;
font-weight: bold;
color: #3366FF;
}
.sub {
font-family: Arial;
font-size: 14px;
color: #3366FF;
margin: 10px 25px;
}
(verwende im Moment IE 6)
Gruß
Arndtinho