49 lines
1.0 KiB
HTML
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> |