overflow-x:hidden still can scroll

前端 未结 10 854
滥情空心
滥情空心 2020-12-05 16:48

The problem is:

I have a full width bar menu, which is made by creating a big margin on the right and to the left. This margin should be cropped by overflow-x:

10条回答
  •  萌比男神i
    2020-12-05 17:32

    How about setting the width on the content body, and warping the #container around the #menu_bar and #content_body?

    body
        div#container 
           div#menu_bar (absolute positioned)
              div#links
              div#full_bar
           div#content_body (relative positioned + padding [#menu_bar height])
              ...
    

    CSS example.

提交回复
热议问题