CSS hide scroll bar if not needed

前端 未结 5 1843
北恋
北恋 2020-11-30 17:19

I am trying to figure out how I can hide the overflow-y:scroll; if not needed. What I mean is that I am building a website and I have a main area which posts wi

5条回答
  •  忘掉有多难
    2020-11-30 17:50

    You can use overflow:auto;

    You can also control the x or y axis individually with the overflow-x and overflow-y properties.

    Example:

    .content {overflow:auto;}
    .content {overflow-y:auto;}
    .content {overflow-x:auto;}
    

提交回复
热议问题