这是第一个小三角的写法:
| 以下为引用的内容: #com_a{ border-top:10px solid #FFFFCC;border-left:10px solid #FF3300;border-bottom:10px solid #FFFFCC;} |
以下是一些小三角;可以举一反三;做出更多的;
|
以下为引用的内容: <style> *{ margin:0; padding:0; font-size:12px; font-family:Verdana, "宋体", Arial; line-height:1.8; list-style:none;} |
以下是一个应用的实例:
| 以下为引用的内容: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <style> *{ margin:0; padding:0; font-size:12px; font-family:Verdana, "宋体", Arial; line-height:1.8; list-style:none;} #nav{ margin:50px; border:1px dashed #FF3300; background:#FFFFCC; padding:50px;} a:link,a:visited{color:#FF6600;text-decoration: none;} a:hover,a:active{ color:#FF0000;} #nav a span{overflow:hidden; border-top:6px solid #FFFFCC;border-left:6px solid #FFFFCC;border-bottom:6px solid #FFFFCC; height:0px; width:0px; margin:2px 2px 0 -10px; position:absolute} #nav a:hover span{background:#CC3300;border-top:6px solid #FFFFCC;border-left:6px solid #FF3300;border-bottom:6px solid #FFFFCC;overflow:hidden; float:left;} </style> </head> <body> <div id="nav"> <h1>应用的一个实例</h1> <ul> <li><a href="http://www.xxxxx.com" target="_blank"><span></span>网站首页</a></li> <li><a href="http://www.xxxxx.com/htmldata/sort/5.html" target="_blank"><span></span>网页特效</a></li> <li><a href="http://www.xxxxx.com/htmldata/sort/3.html" target="_blank"><span></span>网页制作</a></li> <li><a href="http://www.xxxxx.com/htmldata/sort/15.html" target="_blank"><span></span>视频教程</a></li> <li><a href="http://www.xxxxx.com/bbs/" target="_blank"><span></span>网站论坛</a></li> </ul> </div> </body> </html> |