Files
ClassContent/历届学生/罗朝/2019-04-03/box.html
2024-09-27 02:06:13 +08:00

49 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.box {
width: 150px;
height: 150px;
background: red;
/* padding: 10px; */
/* padding: 10px 20px; */
/* padding: 10px 20px 30px; */
/* padding: 10px 20px 5px 9px; */
/* padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 10px; */
/* border: 1px solid #000; */
border-right-color: blue;
border-right-style: solid;
border-right-width : 10px;
border-top-color: palevioletred;
border-top-style: solid;
border-top-width : 10px;
border-left-color: yellow;
border-left-style: solid;
border-left-width : 10px;
border-bottom-color: green;
border-bottom-style: solid;
border-bottom-width : 10px;
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>