第八步:修改内容框边框颜色


.block_content {
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #d27f37;
border-right-color: #d27f37;
border-bottom-color: #d27f37;
border-left-color: #d27f37;
}
代码说明:
.block_content {
border-top-width: 1px; //上边框宽一像素
border-right-width: 1px; //右边框宽一像素
border-bottom-width: 1px; //下
border-left-width: 1px; //左
border-top-style: solid; //上边框为实线,若想要其它线型再问我要
border-right-style: solid; //右为实绩
border-bottom-style: solid; //下
border-left-style: solid; //左
border-top-color: #d27f37; //上边框的颜色
border-right-color: #d27f37; //右的颜色
border-bottom-color: #d27f37; //下
border-left-color: #d27f37; //左
}