Scrollable box containing list of Checkboxes in HTML

后端 未结 5 1587
孤独总比滥情好
孤独总比滥情好 2020-12-12 20:31

Attached you\'ll see a picture of a mock up I did for the required UI. As you can see I need some type of scrollable box that contains checkboxes.

5条回答
  •  既然无缘
    2020-12-12 20:59

    CSS:

    .container { border:2px solid #ccc; width:300px; height: 100px; overflow-y: scroll; }
    

    HTML:

    This is checkbox
    This is checkbox
    This is checkbox
    This is checkbox
    This is checkbox
    This is checkbox
    This is checkbox
    This is checkbox
    This is checkbox
    This is checkbox

    How it looks:

    design

    Is this what you are looking for?

提交回复
热议问题