HTML CSS examples for CSS Property:border-left-style
Div dashed border
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> #presenter{<!--from ww w.j a v a 2 s .com--> position: fixed; width: 150px; height: 150px; border-style: dashed; border-color: red; } </style> </head> <body> <div id="presenter"> </div> </body> </html>