How to give border to any element using css without adding border-width to the whole width of element?

前端 未结 11 1896
礼貌的吻别
礼貌的吻别 2020-12-02 10:19

How to give border to any element using css without adding border-width to the whole width of element?

Like in Photoshop we can give stroke- Inside , center and out

11条回答
  •  心在旅途
    2020-12-02 10:46

    outline:3px solid black || border:3px solid black

    div{
    height:50px;
    width:150px;
    text-align:center;
    
    }
    
    div{    /*this is what you need ! */
    outline:1px solid black
    }
    hello world

提交回复
热议问题