CSS Inset Borders

前端 未结 12 1690
没有蜡笔的小新
没有蜡笔的小新 2020-12-02 15:26

I need to create a solid color inset border. This is the bit of CSS I\'m using:

border: 10px inset rgba(51,153,0,0.65);

Unfortunately that cr

12条回答
  •  情话喂你
    2020-12-02 15:47

    You can do this:

    .thing {
      border: 2px solid transparent;
    }
    .thing:hover {
      border: 2px solid green;
    }
    

提交回复
热议问题