专注于.Net

享受编程的乐趣
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

网页虚线效果

Posted on 2008-01-22 14:17  古道飘零客  阅读(270)  评论(0编辑  收藏  举报
<head runat="server">
   
<title>无标题页</title>
  
<%-- 方法二--%>
   
<STYLE type=text/css> .dotline {
BORDER-BOTTOM-STYLE
: dotted; BORDER-LEFT-STYLE: dotted; BORDER-RIGHT-STYLE: dotted; BORDER-TOP-STYLE: dotted
}
</STYLE>


</head>
<body>
   
<form id="form1" runat="server">
   
<div>
       
<hr style="BORDER-BOTTOM-STYLE: dotted; BORDER-LEFT-STYLE: dotted; BORDER-RIGHT-STYLE: dotted; BORDER-TOP-STYLE: dotted" color=#000000 size=1 />
       方法2:
       
<hr class=dotline color=green size=1 />
   
</div>
   
</form>
</body>
</html>