<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
div{
width: 100px;
height: 100px;
/*定义宽高*/
border: 6px solid;
/*定义边框粗细和边框实线*/
border-color: green red yellow blue;
/*定义边框颜色*/
}
</style>
</head>
<body>
<div></div>
</body>
</html>
