Make one section of simple web page have own scroll bar

后端 未结 5 1085
情歌与酒
情歌与酒 2021-02-19 21:25

I have a section of the web page I am building that is dedicated to news events. These are simply entered as follows currently.


    

        
5条回答
  •  眼角桃花
    2021-02-19 21:51

    Wrap your table in a div using overflow-y: auto; like this

    HTML

    CSS

    .scrollable {
        height: 100px; /* or any value */
        overflow-y: auto;
    }
    

提交回复
热议问题