BerndDasBrot
New member
ich hab volgenden Code (Farben nur zur Demonstration):
wie kann ich "rechts" und "links" auf die gleiche Höhe bringen
Danke
BernddasBrot
Code:
<html>
<head>
<style>
#main {
width:80%;
background-color:#FF0000;
}
#links {
width:25%;
background-color:#0000FF;
}
#rechts {
width:75%;
background-color:#00FF00;
margin-left:25%;
}
</style>
</head>
<body>
<div id ="main">
Hallo>
<div id ="links">
Hallo
</div>
<div id ="rechts">
Hallo
</div>
</div>
</body>
</html>
wie kann ich "rechts" und "links" auf die gleiche Höhe bringen
Danke
BernddasBrot