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

前端 未结 10 725
一向
一向 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:47

    For any case set overflow-x to hidden and I prefer to set max-height in order to limit the expansion of the height of the div. Your code should looks like this:

    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 450px;
    

提交回复
热议问题