Biergamasda
Erfahrenes Mitglied
Wie der Name schon sagt, funktioniert mein margin-top nicht.
Mit position: fixed; würds zwar funktionieren, dann hab ich jedoch probleme mit dem Inhalt der Zeile (welcher auch nicht bzw nur sehr schwer änderbar ist)
also - der Code:
Das div "editor" will einfach nicht nach unten rutschen - keine Ahnung wieso (zur Zeit nur im FF versucht)
lg Masda
Mit position: fixed; würds zwar funktionieren, dann hab ich jedoch probleme mit dem Inhalt der Zeile (welcher auch nicht bzw nur sehr schwer änderbar ist)
also - der Code:
HTML:
<style type="text/css">
body {
background-color: black;
}
div#site {
position: relative;
width: 900px;
height: 600px;
margin: auto;
background-image: url("./images/layout.png");
}
div#files {
float: left;
margin-left: 6px;
margin-top: 135px;
width: 125px;
height: 297px;
background-color: #00FF00;
}
div#editor {
position: relative;
width: 701px;
height: 401px;
margin-left: 189px;
margin-top: 105px;
}
</style>
</head>
<body>
<div id="site">
<div id="files"></div>
<div id="editor">
</div>
</div>
</body>
Das div "editor" will einfach nicht nach unten rutschen - keine Ahnung wieso (zur Zeit nur im FF versucht)
lg Masda