Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> div.blue { outline-style: solid; outline-color: #1c87c9; } div.green { border: 1px solid black; outline-style: solid; outline-color: #8ebf42; } </style> </head> <body> <h2>Outline property example</h2> <div class="blue">Lorem Ipsum is simply dummy text of the printing...</div> <br> <div class="green">Lorem Ipsum is simply dummy text of the printing...</div> </body> </html>