網(wǎng)頁箭頭特效:用CSS寫的網(wǎng)頁導(dǎo)航向上箭頭
更新時(shí)間:2012-05-06 | 發(fā)布人:本站 | 點(diǎn)擊率:525 次
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標(biāo)題文檔</title>
<style type="text/css">
.wrap { width:200px; height:50px; position:relative; margin-top:50px; background:#080;}
.arrow { width:0; height:0; position:absolute; left:50%; margin-left:-17px; top:-32px; font-size:0; border-width:16px; border-color:transparent transparent #080; border-style:dashed dashed solid; }
</style>
</head>
<body>
<div class="wrap"><div class="arrow"></div></div>
</body>
</html>