css绘制图标
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <title>无标题文档</title> <link rel="shortcut icon" href="img/icoTest.ico"> </head> <style type="text/css"> /*三角形*/ .triangle{ width: 0; height: 0; border-width: 0 30px 30px; border-style: solid; border-color: transparent transparent #ccc; margin: auto; } </style> <body> <div class="triangle"></div> </body> <html>