i want to create a div that will take images, line them up left to right, without wrapping them. That is when the images get widder than the browser window, i want them to keep going off the screen and you would need a vertical scroll to see it all. Instead of the images just going to the next line. I have a dummy setup and it looks like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
.body {
width:100%;
height: 450px;
}
.image {
margin-right: 15px;
margin-bottom:0px;
float: left;
}
-->
</style>
</head>
<body>
<div class = "body">
<div class = "image"><img src="image.jpg" /></div>
<div class = "image"><img src="iamge.jpg" /></div>
<div class = "image"><img src="image.jpg" /></div>
</div>
</body>
</html>
What can i do to stop the images from “wrapping” i guess?