Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

http://jsfiddle.net/UnNbW/

I want the divs to wrap their content. And stay in their origionally associated line.

Essentially without wrapping.

see the jsfiddle. Basically, the tables are stacking below each other, when it cant stay on screen. I would rather they become hidden off screen.

Ive tried adding overflow: hidden; to the style, for the main layout. I do not want to fix a width for each div. It needs to fit content in.

please feel free to change classes / add classes.

CSS

.layout 
{

   -moz-border-radius: 15px;
    border-radius: 15px;
    vertical-align: top;
    display: inline-block;

}

.layoutbacking
{
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 5px;
    margin: 5px;
    background: #CCCCCC;
}

HTML:

<div class="layout" style="background: #222222; width: 100%; overflow:hidden">
    <div>
        <div class="layout layoutbacking" >
                <table>
                <tr>
                    <th>
                        header 1
                    </th>
                    <th>
                        header 2
                    </th>
                    <th>
                        header 3
                    </th>
                    <th>
                        header 4
                    </th>
                </tr>
                <tr>
                    <td>
                        data 1
                    </td>
                    <td>
                        data 2
                    </td>
                    <td>
                        data 3
                    </td>
                    <td>
                        data 4
                    </td>
                </tr>
                       <tr>
                    <td>
                        data 1
                    </td>
                    <td>
                        data 2
                    </td>
                    <td>
                        data 3
                    </td>
                    <td>
                        data 4
                    </td>
                </tr>
                       <tr>
                    <td>
                        data 1
                    </td>
                    <td>
                        data 2
                    </td>
                    <td>
                        data 3
                    </td>
                    <td>
                        data 4
                    </td>
                </tr>
            </table>
        </div>
        <div class="layout" >
            <div class="layout layoutbacking">
                    <table>
                <tr>
                    <th>
                        header 1
                    </th>
                    <th>
                        header 2
                    </th>
                    <th>
                        header 3
                    </th>
                    <th>
                        header 4
                    </th>
                </tr>
                <tr>
                    <td>
                        data 1
                    </td>
                    <td>
                        data 2
                    </td>
                    <td>
                        data 3
                    </td>
                    <td>
                        data 4
                    </td>
                </tr>
            </table>
            </div>
            <br />
            <div class="layout layoutbacking">
                    <table>
                <tr>
                    <th>
                        header 1
                    </th>
                    <th>
                        header 2
                    </th>
                    <th>
                        header 3
                    </th>
                    <th>
                        header 4
                    </th>
                </tr>
                <tr>
                    <td>
                        data 1
                    </td>
                    <td>
                        data 2
                    </td>
                    <td>
                        data 3
                    </td>
                    <td>
                        data 4
                    </td>
                </tr>
            </table>
            </div>
        </div>
    </div>
    <div>
        <div class="layout layoutbacking">
             <table>
                <tr>
                    <th>
                        header 1
                    </th>
                    <th>
                        header 2
                    </th>
                    <th>
                        header 3
                    </th>
                    <th>
                        header 4
                    </th>
                </tr>
                <tr>
                    <td>
                        data 1
                    </td>
                    <td>
                        data 2
                    </td>
                    <td>
                        data 3
                    </td>
                    <td>
                        data 4
                    </td>
                </tr>
            </table>
        </div>
        <div class="layout layoutbacking" >
            <table>
                <tr>
                    <th>
                        header 1
                    </th>
                    <th>
                        header 2
                    </th>
                    <th>
                        header 3
                    </th>
                    <th>
                        header 4
                    </th>
                </tr>
                <tr>
                    <td>
                        data 1
                    </td>
                    <td>
                        data 2
                    </td>
                    <td>
                        data 3
                    </td>
                    <td>
                        data 4
                    </td>
                </tr>
            </table>
        </div>
share|improve this question

1 Answer

up vote 2 down vote accepted

Add white-space: nowrap; to your .layout style declaration.

This will do exactly what you need, preventing divs to wrap.

Demo: http://jsfiddle.net/UnNbW/2/

You may want to add padding-right to not break the border-radius effect.

share|improve this answer
thanks man! Do you mean by the padding-right, to make it so its not floating over nothing when you scroll? What should I add it to? jsfiddle example? I'll try it out anyway. Thanks! – Mcloving Jan 21 at 14:25
Forget about the padding-right, just add overflow:hidden; to .layout to prevent the gray blocks to overflow off the dark container: jsfiddle.net/UnNbW/3 – Andrea Ligios Jan 21 at 14:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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