12345678910111213141516171819 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <style>
- .outline{
- width: 200px;
- height: 300px;
- background-color: grey;
- border: 1px solid red;
- outline: green dotted 10px;
- }
- </style>
- </head>
- <body>
- <div class="outline"></div>
- </body>
- </html>
|