Hide scrollbar in IE

前端 未结 7 1460
猫巷女王i
猫巷女王i 2020-12-24 05:24

In our application for UI we are using JSF or Prime faces for that. We would like to hide the scrollbar for our application, but we are struggling to achieve this in Interne

7条回答
  •  爱一瞬间的悲伤
    2020-12-24 06:07

    You may use this code implement it into body --

    body { overflow-x:hidden; }
    

    If not by that look into the layout and see if any container have a untoward width of something which is making the layout stretch a bit...

提交回复
热议问题