CSS Inset Borders

前端 未结 12 1699
没有蜡笔的小新
没有蜡笔的小新 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:57

    I would recomnend using box-sizing.

    *{
      -webkit-box-sizing:border-box;
      -moz-box-sizing:border-box;
      -ms-box-sizing:border-box;
      box-sizing:border-box;
    }
    
    #bar{
      border: 10px solid green;
      }
    

提交回复
热议问题