Hey ,
I've got a simple html question.
I'm placing a load of thumbnails after eachother , but they automatically go to the next line , how can i make it so that they all are on one line and just has a scrollbar underneath to move to the ones that aren't visible on the screen
it's like :
<img src="....">
<img src="...">
<img src="....">
<img src="...">
<img src="....">
<img src="...">
<img src="....">
<img src="...">
<img src="....">
<img src="...">
and so on ....
simple HTML question : solved
Moderator: General Moderators
-
ben_albrechts
- Forum Commoner
- Posts: 33
- Joined: Wed Oct 26, 2005 3:33 am
simple HTML question : solved
Last edited by ben_albrechts on Fri Nov 18, 2005 7:54 am, edited 1 time in total.
- jayshields
- DevNet Resident
- Posts: 1912
- Joined: Mon Aug 22, 2005 12:11 pm
- Location: Leeds/Manchester, England
-
ben_albrechts
- Forum Commoner
- Posts: 33
- Joined: Wed Oct 26, 2005 3:33 am
-
ben_albrechts
- Forum Commoner
- Posts: 33
- Joined: Wed Oct 26, 2005 3:33 am
Code: Select all
<style type='text/css'>
img {display:inline}
</style>