Padding on div border

前端 未结 6 1653
长发绾君心
长发绾君心 2021-02-01 20:08

I want to put padding on a css border. Pull it inside a div, away from the edge. Is this possible using css (css3 is fine, webkit).

Here is the design.

6条回答
  •  你的背包
    2021-02-01 20:51

    Instead of borders, you may use outline property:

    div{
      height:300px;
      width:500px;
      background-color:lightblue;
      outline:dashed;
      outline-offset:-10px;    
    }

    http://jsfiddle.net/H7KdA/

提交回复
热议问题