问题:div的半透明边框应该透出body的蓝色图片背景而不是透出这个容器自己的橙色背景,如下图:
解决方法:运用background-clip:padding-box; background-clip默认的属性值是border-box,最终效果,如下图
<div style="200px;height:100px;background:orange;border: 10px solid rgba(255,255,255,.2);background-clip:padding-box;"></div>