62,267
社区成员
发帖
与我相关
我的任务
分享
<!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 runat="server">
<title></title>
<style type="text/css">
body{ background-color:Black; background-attachment:fixed;}
#div1{filter:alpha(Opacity=20);z-index:1; background-color: White; position:absolute; margin:0px; padding:0px;width:200px;}
#div2{ width:200px; z-index:100; position:absolute; margin:0px; padding:0px;}
#div2 .div{ line-height:40px;filter:alpha(Opacity=50); cursor:pointer; color:Black; font-family:@Adobe 繁黑體 Std B; font-weight:900; font-size:14px; width:200px;background-color:White}
#div2 .div span{ margin-left:15px;}
#div2 .div:hover{filter:alpha(Opacity=70);}
#divx{width:200px; line-height:40px; position:relative; z-index:100; background-color: White; font-family:@Adobe 繁黑體 Std B; font-weight:900; font-size:14px; cursor:pointer;}
#divx_{width:200px; line-height:40px; z-index:2; position:absolute; background-color:Red;padding:0px; top:0px; left:200px; display:none}
#div_ div{ line-height:40px}
/* #divx:hover{filter:alpha(Opacity=70);}*/
#divx:hover #divx_{ display:block}
#divx span,divx_ span{ margin-left:15px}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="div1"></div>
<div id="div2">
<div class="div" style=" margin-top:15px"> <span>我的主页</span> </div>
<div id="divx"><span>文章管理</span>
<div id="divx_">
<div><span> 写新文章</span></div>
<div><span> 文章管理</span></div>
<div><span> 标签管理</span></div>
</div>
</div>
<div class="div"> <span>用户留言</span></div>
<div class="div"><span>评论列表</span> </div>
<div class="div"><span>关于我们</span></div>
</div>
</form>
</body>
</html>