HTML CSS examples for CSS Widget:Arrow
Create down arrow
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .target:after {<!-- www .j a va 2 s .c om--> content:''; display:block; margin:auto; border-color:Chartreuse; border-style:solid; border-width:3.6em; width:0; height:0; } </style> </head> <body> <div class="target"> This is test text. This is test text. This is test text. </div> </body> </html>