HTML: How to create a DIV with only vertical scroll-bars for long paragraphs?

前端 未结 10 713
一向
一向 2020-12-07 16:32

I want to show terms and condition note on my website. I dont want to use text field and also dont want to use my whole page. I just want to display my text in selected area

10条回答
  •  死守一世寂寞
    2020-12-07 16:49

    To show vertical scroll bar in your div you need to add

    height: 100px;   
    overflow-y : scroll;
    

    or

    height: 100px; 
    overflow-y : auto;
    

提交回复
热议问题