标签:
要点:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Document</title> <style> .tri{ margin: 60px; border: 10px solid ; /*width: 0; 要有,不设置宽度的话,默认div的100%宽度,三角会跑到最右边*/ /*border-color: red transparent transparent transparent;*/ border-color: transparent red transparent transparent; /*border-color: transparent transparent red transparent;*/ /*border-color: transparent transparent transparent red;*/ /*outline: 1px solid green;*/ } </style> </head> <body> <div class="tri"> </div> </body> </html>
标签:
原文地址:http://www.cnblogs.com/nostic/p/5899373.html