Separators between elements without hacks

前端 未结 6 908
猫巷女王i
猫巷女王i 2020-12-14 08:18

One thing I often want to do when laying out a website is to have some elements next to each other, with separators between them. For instance, if I have 3 elements, I\'d wa

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-14 08:59

    Something like this?

    CSS:

    #note_list span {
        display:inline-block;
         padding:0 10px;
    }
    .notend {
        border-right:1px solid #000000;
    }
    

    HTML:

    things stuff items

提交回复
热议问题