Make one section of simple web page have own scroll bar

后端 未结 5 1086
情歌与酒
情歌与酒 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条回答
  •  萌比男神i
    2021-02-19 21:52

    If your news events are wrapped in a

    , then your CSS would look like this:

    #news {
        height: 200px;
        overflow-y: auto;
    }
    

    提交回复
    热议问题