What is the best way to style a list of checkboxes

前端 未结 4 1366
北海茫月
北海茫月 2020-12-29 05:19

What I\'d like to achieve is a layout like this

some label  [ ] checkbox 1
            [ ] checkbox 2
            [ ] checkbox 3
            [ ] checkbox 4
4条回答
  •  半阙折子戏
    2020-12-29 05:58

    I would use this markup:

    • checkbox 1
    • checkbox 2
    • checkbox 3
    • checkbox 4

    and these styles:

    #checkboxes label {
      float: left;
    }
    #checkboxes ul {
      margin: 0;
      list-style: none;
      float: left;
    }
    

    Tables aren't evil, but they're used for the wrong reasons more often than not. They make for bigger html-files (bad for performance and bandwidth), usually with a more cluttered html-structure (bad for maintainability). As for tabular data however, they are excellent.

提交回复
热议问题