Vertical border between floating DIVs using CSS

前端 未结 4 561
别那么骄傲
别那么骄傲 2021-01-18 05:52

I have the following HTML structure

Some text goes here
Dif
4条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-18 06:08

    The simple one:

    elements {
      border-left: black solid 1px;
    }
    
    elements:nth-child(1) {
      border-left: none;
    }
    

提交回复
热议问题