CSS how to make scrollable list

前端 未结 2 2048
清酒与你
清酒与你 2021-01-31 07:57

I am trying to create a webpage which is made up of a header and bellow the header a list of items. I want the list of items to be vertically scrollable. I also would like the w

2条回答
  •  时光说笑
    2021-01-31 08:57

    As per your question vertical listing have a scrollbar effect.

    CSS / HTML :

    nav ul{height:200px; width:18%;}
    nav ul{overflow:hidden; overflow-y:scroll;}
    
    
        
            
            JS Bin
        
        
            
    header area
    footer area

提交回复
热议问题