Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .a { font-size: 2.5em; margin: 0; -webkit-text-stroke: 1px #8ebf42; } .b { font-size: 2.5em; margin: 0; -webkit-text-stroke: 2pt #8ebf42; } .c { font-size: 2.5em; margin: 0; -webkit-text-stroke: 0.1cm #8ebf42; } </style> </head> <body> <h2>Text-stroke property example</h2> <p class="a">Lorem Ipsum is simply dummy text...</p> <p class="b">Lorem Ipsum is simply dummy text...</p> <p class="c">Lorem Ipsum is simply dummy text...</p> </body> </html>