<div class="box"></div>
/*
resize 规定改变元素大小。注意使用该属性时需要配合overflow属性,因为默认溢出是隐藏的,那么调节也就变得无意义
box-sizing 指定盒子的使用模型
outline-offset
*/
.box{
width: 200px;
border: 2px solid;
height: 200px;
background-color: rgb(195, 195, 248);
/* 指定用户是否可以改变元素尺寸 */
resize: both;
overflow: auto;
/* 通过outline设置轮廓线 */
outline: 1px solid aqua;
/* outline-offset属性设置轮廓线偏移元素的距离 */
outline-offset: 15px;
}