gollum1990
Neues Mitglied
Hallo Forum,
könntent ihr mir vielleicht bei etwas helfen, ich versuche ein solches Menü wie bei Wikipedia zu erstellen aber dabei stoße ich auf probleme, wie im angehängten Bild sehen, ich will das das auf gleicher eBENE IST UND DIE bORDER da weg, wei mach ich sowas?
Code:
MFG gollum1990
könntent ihr mir vielleicht bei etwas helfen, ich versuche ein solches Menü wie bei Wikipedia zu erstellen aber dabei stoße ich auf probleme, wie im angehängten Bild sehen, ich will das das auf gleicher eBENE IST UND DIE bORDER da weg, wei mach ich sowas?
Code:
HTML:
<style type="text/css">
#divid {
width: 300px;
height: 100px;
background-color: blue;
left: 25;
top: 25;
border: 1px solid black;
float: left;
display: block;
}
#divpd {
width: 300px;
height: 100px;
background-color: red;
top: 0;
left: 325;
border: 1px solid black;
float: top;
display: block;
}
#button1 {
width: 100px;
height: 25;
background-color: blue;
border: 1px solid black;
top: 0;
left: 100;
float: top;
display: block;
}
#button2 {
width: 100px;
height: 25;
background-color: red;
border: 1px solid black;
top: 0;
left: 350;
float: top;
display: block;
}
</style>
MFG gollum1990