Hi all experienced out there. I'm not so good at English but I'll try to describe my problem.

I'm trying to learn this with DIV's and its positions, and has stuck with a small thing.

I will try to describe it: I have a main DIV with fixed height and width, and in that I want have lots of small DIV's to float freely. I have more small DIV's than can fit in the main DIV. Then it seems that by default is disappear small DIV's down outside the main DIV. See image #1 of my links below. I want them instead to disappear to the right. See image #2.

The point is that I want to trigger a horizontal scrollbar, but no vertical. I tested this with "white-space: nowrap" as described here: http://www.webmasterworld.com/forum83/8844.htm And it works perfect if I have only text or images in the main DIV. But how do I do when the main DIV contains only small DIV's?

Thanks in advance...

Look here for example, code and images: http://www.bohden.se/temp2

link|improve this question
can you also have jquery in your solution? – Xavier Jun 21 '11 at 20:48
feedback

2 Answers

up vote 0 down vote accepted

Wrap your smaller divs in a third div that has a greater width than your main div like so. Assuming I understood your question correctly no jquery is needed.

<html>
<head>

<style type="text/css">       
#div_1
{

height: 350px;
width: 350px;
margin: auto;
border: 1px black solid;
overflow-y: hidden;
overflow-x: scroll}

#div_3
{
float: left;
height: 350px;
width: 500px;
margin: auto;
border: 1px black solid;
overflow-y: hidden;
overflow-x: scroll}

#div_2
{height: 100px;
width: 100px;
border: 1px solid #A2A2A2;
float: left}
</style>

</head>
<body>

<div id="div_1">

<div id="div_3">

    <div id="div_2"></div>
    <div id="div_2"></div>
    <div id="div_2"></div>

    <div id="div_2"></div>
    <div id="div_2"></div>
    <div id="div_2"></div>
    <div id="div_2"></div>
    <div id="div_2"></div>
    <div id="div_2"></div>
    <div id="div_2"></div>
    <div id="div_2"></div>
    <div id="div_2"></div>

</div>

</div>

</body>
</html>
link|improve this answer
that will work if there is a fixed width set on the containing div – Xavier Jun 21 '11 at 21:10
YES! It was exactly what I meant. Thank you very much for your help. You are the best. :-) Thank you also "Xavier". But I do not have to learn "jquery", so it is easier. I'm just a newbie. – Jonas B Jun 21 '11 at 21:21
feedback

So i have done this using jQuery, html and CSS;

html

<div id="overflow">
<div class="container">
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
    <div></div>
</div>
</div>

css

#overflow{border:1px solid #000;height:220px;width:220px;overflow-x:scroll;overflow-y:hidden;}
#overflow .container{}
#overflow .container div{border:1px solid #CCC;float:left;width:200px;height:200px;float:left;}

jQuery

$(function(){
var width = 0;
$('#overflow .container div').each(function() {
    width += $(this).outerWidth( true );
});
$('#overflow .container').css('width', width + "px");
alert(width);
});

Basically the div can not use a fluid width in CSS as width is applied inherently from the parent div.

Using some jquery code you can attach the width to the containing div easily.

Here is the fiddle with the final code.

http://jsfiddle.net/xavi3r/Wq5fW/

OR

use a fixed width on the container div i.e. #overflow .container { width : 1880px }

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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