| 1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- width: 200px;
- height: 200px;
- /* border:10px solid blue; */
- border-top:10px solid blue;
- /* transparent 透明的颜色 */
- border-right: 10px solid transparent;
- border-bottom: 10px solid green;
- border-left: 10px solid orange;
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- </body>
- </html>
|