//css盒子边框效果设置
<html>
<head>
<style type="text/css">
.box{width:1000px;height:100px;color:red;border:1px solid #ccc}
</style>
</head>
<div class=“box"></div>
</html>