Preventing “double” borders in CSS

后端 未结 17 1541
梦毁少年i
梦毁少年i 2020-12-02 11:49

Say I have two divs next to each other (take https://chrome.google.com/webstore/category/home as reference) with a border.

Is there a way (preferably a CSS trick) to

17条回答
  •  死守一世寂寞
    2020-12-02 12:27

    I'm late to the show but try using the outline property, like so:

    .item {
      outline: 1px solid black;
    }
    

    Outlines in CSS do not occupy physical space and will therefore overlap to prevent a double border.

提交回复
热议问题