buffal
October 23rd, 2005, 06:22 AM
Hello, have a little problem that don't know how to draw table's borders dotted or dashed ?
Thanks for your time
Thanks for your time
|
Click to See Complete Forum and Search --> : Drawing dotted lines buffal October 23rd, 2005, 06:22 AM Hello, have a little problem that don't know how to draw table's borders dotted or dashed ? Thanks for your time PeejAvery October 23rd, 2005, 09:24 AM Just use style-sheets. CSS2 Border Styles (http://www.w3schools.com/css/pr_border-style.asp) <style> .brdrdot{ border-style: dotted; } .brdrdsh{ border-style: dashed; } </style> <table cellpadding=1 cellspacing=0 border=1 width=200 height=200 class="brdrdot"> <tr><td>1</td><td>2</td><td>3</td></tr> <tr><td>a</td><td>b</td><td>c</td></tr> </table> <br> <table cellpadding=1 cellspacing=0 border=1 width=200 height=200 class="brdrdsh"> <tr><td>1</td><td>2</td><td>3</td></tr> <tr><td>a</td><td>b</td><td>c</td></tr> </table> codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |