vote up 1 vote down star

Hi,

I have a container div with a fixed width and height, with overflow: hidden.

I want a horizontal row of float: left divs within this container. Divs which are floated left will naturally push onto the 'line' below after they read the right bound of their parent. This will happen even if the height of the parent should not allow this. This is how this looks:

Wrong

How I would like it to look:

Right

Note: the effect I want can be achieved by using inline elements & white-space: no-wrap (that is how I did it in the image shown). This, however, is no good to me (for reasons too lengthy to explain here), as the child divs need to be floated block level elements.

Help please!

flag

3 Answers

vote up 5 vote down check

You may put an inner div in the container that is enough wide to hold all the floated divs.

<div id="container" style="background-color:red;overflow:hidden;width:200px">
  <div id="inner" style="overflow:hidden;width: 2000px">
     <div style="float:left;background-color:blue;width:50px;height:50px">
     </div>
     <div style="float:left;background-color:blue;width:50px;height:50px">
     </div>
     <div style="float:left;background-color:blue;width:50px;height:50px">
     </div>
     ...
  </div>
</div>
link|flag
vote up 0 vote down

This seems close to what you want:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">

<html lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>untitled</title>
	<meta name="generator" content="TextMate http://macromates.com/">
	<meta name="author" content="Sören Kuklau">
	<!-- Date: 2008-08-31 -->
	<style type="text/css" media="screen">
		#foo { background: red; max-height: 100px; overflow-y: hidden; }

		.bar { background: blue; width: 100px; height: 100px; float: left; margin: 1em; }
	</style>
</head>
<body>
<div id="foo">
	<div class="bar"></div>
	<div class="bar"></div>
	<div class="bar"></div>
	<div class="bar"></div>
	<div class="bar"></div>
	<div class="bar"></div>
</div>
</body>
</html>
link|flag
vote up 1 vote down

you can use the clip property:

   #container {
       position: absolute;
       clip: rect(0px,200px,100px,0px);
       overflow: hidden;

       background: red;

note the position: absolute and overflow: hidden needed in order to get clip to work.

link|flag
what is clip's browser support? – alex Oct 28 '08 at 6:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.