Prevent wrapping of span or div

后端 未结 5 1349
-上瘾入骨i
-上瘾入骨i 2020-12-22 21:24

I\'d like to put a group of div elements of fixed width into a container and have the horizontal scroll bar appeared. The div/span ele

相关标签:
5条回答
  • 2020-12-22 21:54

    Looks like divs will not go outside of their body's width. Even within another div.

    I threw this up to test (without a doctype though) and it does not work as thought.

    .slideContainer {
        overflow-x: scroll;
    }
    .slide {
        float: left;
    }
    <div class="slideContainer">
        <div class="slide" style="background: #f00">Some content Some content Some content Some content Some content Some content</div>
        <div class="slide" style="background: #ff0">More content More content More content More content More content More content</div>
        <div class="slide" style="background: #f0f">Even More content! Even More content! Even More content!</div>
    </div>

    What i am thinking is that the inner div's could be loaded through an iFrame, since that is another page and its content could be very wide.

    0 讨论(0)
  • 2020-12-22 21:57

    Try this:

    .slideContainer {
        overflow-x: scroll;
        white-space: nowrap;
    }
    .slide {
        display: inline-block;
        width: 600px;
        white-space: normal;
    }
    <div class="slideContainer">
        <span class="slide">Some content</span>
        <span class="slide">More content. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</span>
        <span class="slide">Even more content!</span>
    </div>

    Note that you can omit .slideContainer { overflow-x: scroll; } (which browsers may or may not support when you read this), and you'll get a scrollbar on the window instead of on this container.

    The key here is display: inline-block. This has decent cross-browser support nowadays, but as usual, it's worth testing in all target browsers to be sure.

    0 讨论(0)
  • 2020-12-22 21:59

    It works with just this:

    .slideContainer {
        white-space: nowrap;
    }
    .slide { 
        display: inline-block;
        width: 600px;
        white-space: normal;
    }
    

    I did originally have float : left; and that prevented it from working correctly.

    Thanks for posting this solution.

    0 讨论(0)
  • 2020-12-22 22:06

    As mentioned you can use:

    overflow: scroll;
    

    If you only want the scroll bar to appear when necessary, you can use the "auto" option:

    overflow: auto;
    

    I don't think you should be using the "float" property with "overflow", but I'd have to try out your example first.

    0 讨论(0)
  • 2020-12-22 22:08

    Particularly when using something like Twitter's Bootstrap, white-space: nowrap; doesn't always work in CSS when applying padding or margin to a child div. Instead however, adding an equivalent border: 20px solid transparent; style in place of padding/margin works more consistently.

    0 讨论(0)
提交回复
热议问题