如何在html中为框创建内部边框?
看这张图:
看看这个,我们可以简单地用outline-offset属性做这个
outline-offset
输出图像看起来像
.black_box { width:500px; height:200px; background:#000; float:left; border:2px solid #000; outline: 1px dashed #fff; outline-offset: -10px; }