ReMaX
12-07-2007, 12:17 AM
Am I too tired?
I want to make a horizontally scrolling image gallery like it is used sometimes in myspace.com. I just started writing the css code but it doesn't work. It has to scroll horizontally and not vertically!
a, img {
margin:0;
padding:0;
border:none;
display:inline;
float:left; }
#gallery {
position:absolute;
margin:20px 0 0 0;
width:99%;
height:500px;
border:1px solid #000;
overflow:auto;
background:#bbb; }
#gallery #scrollbox {
height:500px; }
#gallery #images {
heigth:500px;
border:1px solid green; }
...
<div id="gallery">
<div id="scrollbox">
<div id="images">
[images generated by PHP]
</div>
</div>
</div>
Anybody an idea? Please help.
greetings
MAX
I want to make a horizontally scrolling image gallery like it is used sometimes in myspace.com. I just started writing the css code but it doesn't work. It has to scroll horizontally and not vertically!
a, img {
margin:0;
padding:0;
border:none;
display:inline;
float:left; }
#gallery {
position:absolute;
margin:20px 0 0 0;
width:99%;
height:500px;
border:1px solid #000;
overflow:auto;
background:#bbb; }
#gallery #scrollbox {
height:500px; }
#gallery #images {
heigth:500px;
border:1px solid green; }
...
<div id="gallery">
<div id="scrollbox">
<div id="images">
[images generated by PHP]
</div>
</div>
</div>
Anybody an idea? Please help.
greetings
MAX