Overflow:hidden full width div doesnt work

Antonin Cezard

I have a simple problem with a menu, its a 2 part menu : on the left, a traditional UL. On the right, a link contained in a div. The right div has fixed width. The left div must take all remaining space.

I tried the overflow:hidden technique, to no avail https://coderwall.com/p/0ph8lg/overflow-hidden-trick-to-fill-remaining-width

https://jsfiddle.net/3gfqyux4/

.container {
    width:800px;
    height:50px;
}

.left-menu {
    background-color:red;
    width:auto;
    height:50px;
    overflow:hidden;
}
.left-menu ul li {
    display:inline;
}
.right-menu {
    background-color:blue;
    float:right;
    width:100px;
    height:50px;
}
miss.emenems

Change an order of this two lists ;)

<div class="container">
<div class="right-menu">
    <a href="xyz.com">
        xyz.com
    </a>
</div>    
<div class="left-menu">
    <ul>
        <li>menu</li>
         <li>menu</li>
         <li>menu</li>
    </ul>
</div>

https://jsfiddle.net/3gfqyux4/2/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Why doesnt it work without overflow hidden?

From Dev

Why div inside a overflow: hidden; div not taking full width of it's content?

From Dev

display inline block doesnt work when i increase div width

From Dev

CSS - how to overflow from div to full width of screen

From Dev

Overflow: hidden not work

From Dev

How to make bootstrap 3 tooltip work with parent div with overflow:hidden?

From Dev

Chrome 55: position: fixed; in div overflow: hidden; doesn't work

From Dev

CSS div Overflow hidden

From Dev

Trying to make overflow: hidden work

From Dev

Trying to make overflow: hidden work

From Dev

Make the img tag width and height 100% inside overflow hidden div while maintaining the aspect ratio

From Dev

css 3 column div centered fixed width left middle and right overflow:hidden

From Dev

rsync exclude hidden files doesnt work!

From Dev

rsync exclude hidden files doesnt work!

From Dev

Failed to implement overflow hidden to DIV

From Dev

Only the main div to be with hidden overflow

From Dev

Issue with div float and overflow hidden

From Dev

Scroll to the right in element with fixed width and hidden overflow

From Dev

How to get the width of an element where the overflow is hidden?

From Dev

div popup doesnt seem to work

From Dev

Div with scrollbar inside div with overflow:hidden

From Dev

Using "overflow:hidden;" on a div inside a div

From Dev

Absolute div within a overflow hidden relative div

From Dev

Jqgrid loses full width when a column is hidden

From Dev

I need that a resizable (jQuery ui) div in a TH don't go smaller that TD width or make TD overflow:hidden

From Dev

can overflow: hidden; work with inline-blocks?

From Dev

Can't get "overflow: hidden" to work on image

From Dev

How do get overflow hidden to work

From Dev

can overflow: hidden; work with inline-blocks?

Related Related

  1. 1

    Why doesnt it work without overflow hidden?

  2. 2

    Why div inside a overflow: hidden; div not taking full width of it's content?

  3. 3

    display inline block doesnt work when i increase div width

  4. 4

    CSS - how to overflow from div to full width of screen

  5. 5

    Overflow: hidden not work

  6. 6

    How to make bootstrap 3 tooltip work with parent div with overflow:hidden?

  7. 7

    Chrome 55: position: fixed; in div overflow: hidden; doesn't work

  8. 8

    CSS div Overflow hidden

  9. 9

    Trying to make overflow: hidden work

  10. 10

    Trying to make overflow: hidden work

  11. 11

    Make the img tag width and height 100% inside overflow hidden div while maintaining the aspect ratio

  12. 12

    css 3 column div centered fixed width left middle and right overflow:hidden

  13. 13

    rsync exclude hidden files doesnt work!

  14. 14

    rsync exclude hidden files doesnt work!

  15. 15

    Failed to implement overflow hidden to DIV

  16. 16

    Only the main div to be with hidden overflow

  17. 17

    Issue with div float and overflow hidden

  18. 18

    Scroll to the right in element with fixed width and hidden overflow

  19. 19

    How to get the width of an element where the overflow is hidden?

  20. 20

    div popup doesnt seem to work

  21. 21

    Div with scrollbar inside div with overflow:hidden

  22. 22

    Using "overflow:hidden;" on a div inside a div

  23. 23

    Absolute div within a overflow hidden relative div

  24. 24

    Jqgrid loses full width when a column is hidden

  25. 25

    I need that a resizable (jQuery ui) div in a TH don't go smaller that TD width or make TD overflow:hidden

  26. 26

    can overflow: hidden; work with inline-blocks?

  27. 27

    Can't get "overflow: hidden" to work on image

  28. 28

    How do get overflow hidden to work

  29. 29

    can overflow: hidden; work with inline-blocks?

HotTag

Archive