Hallo alle zusammen,
ich möchte eine Gallerie für meine Website erstellen.
Nun habe ich aber leider ein Problem mit dem clip-attribut.
ersteinmal hatte ich mir die Navigation so vorgestellt:
http://i144.photobucket.com/albums/r176/Reptilica/vorschau-1.jpg
aber irgendwie "funktioniert" das clip-attribut nicht wirklich sodass der Container "Funktionen" nicht abgeschnitten, sondern außerhalb des "Interfaces" angezeigt wird.
ein screenshot:
http://i144.photobucket.com/albums/r176/Reptilica/screen-2.jpg
Könntet ihr mir bitte helfen?
hier der html code:
und der css-code:
ich bedanke mich schon mal...
mfg
ich möchte eine Gallerie für meine Website erstellen.
Nun habe ich aber leider ein Problem mit dem clip-attribut.
ersteinmal hatte ich mir die Navigation so vorgestellt:
http://i144.photobucket.com/albums/r176/Reptilica/vorschau-1.jpg
aber irgendwie "funktioniert" das clip-attribut nicht wirklich sodass der Container "Funktionen" nicht abgeschnitten, sondern außerhalb des "Interfaces" angezeigt wird.
ein screenshot:
http://i144.photobucket.com/albums/r176/Reptilica/screen-2.jpg
Könntet ihr mir bitte helfen?
hier der html code:
Code:
<html>
<head>
<title>
Versuch Gallerie
</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div id="Navigation">
<div id="HochButton">
</div>
<!-- eigentliche "menüs" -->
<div id="Interface">
<div id="Alben">
A
</div>
<div id="Bilder">
B
</div>
<div id="Funktionen">
C
</div>
</div>
<div id="RunterButton">
</div>
</div>
</body>
</html>
Code:
#Navigation { /* enthält alles */
height:600px;
width:150px;
float:left;
/* Farbe zum Test */
background-color:#aa0000;
}
/* Befinden sich in Navigation */
#HochButton{
width:150px;
height:50px;
/* Farbe zum Test */
background-color:#a00a00;
}
#Interface{
width:150px;
height:500px;
clip:rect(0px 150px 500px 0px);
/* Farbe zum Test */
background-color:#00ff00;
}
/* Befinden sich in Interface (eigentliche "Menüs") */
#Alben{
width:60px;
height:500px;
/* Farbe zum Test */
background-color:#111111;
float:left;
}
#Bilder{
width:60px;
height:500px;
/* Farbe zum Test */
background-color:#eeeeee;
float:left;
}
#Funktionen{
width:60px;
height:500px;
/* Farbe zum Test */
background-color:#ff00ff;
float:right;
}
#RunterButton{
width:150px;
height:50px;
/* Farbe zum Test */
background-color:#00a0a0;
}
mfg