主题:  dl,dt,dd制作的CSS垂直菜单

shanchumima

职务:普通成员
等级:1
金币:0.0
发贴:6
注册:2006/11/30 8:03:27
#12007/4/6 14:14:05
在线效果查看

感觉跟ul和li有点类似,源码如下:

<!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=gb2312" />
<title>dl,dt,dd制作的CSS垂直菜单</title>
<style type="text/css">
#menu dl {width: 150px; margin: 0 auto; padding: 0 0 10px 0; background: #69c url(file:///E|/ceshi/media/bottom.gif) no-repeat bottom left;}
#menu dt {margin:0; padding: 10px; font-size: 1.4em; font-weight:bold; color: #fff; border-bottom:1px solid #fff; background: #69c url(file:///E|/ceshi/media/top.gif) no-repeat top left;}
#menu dd {margin:0; padding:0; color: #fff; font-size: 1em; border-bottom:1px solid #fff; background: #47a;}
#gallery a, #gallery a:visited {color:#fff; text-decoration:none; display:block; padding:5px 5px 5px 20px;
background: #47a url(file:///E|/ceshi/media/arrow.gif) no-repeat 10px 10px; width:125px;
}
#gallery a:hover {background: #258 url(file:///E|/ceshi/media/arrowr.gif) no-repeat 11px 10px; color:#9cf;}
ol li {font-size:11px;}
</style>
</head>

<body>
<div id="menu">
<dl id="gallery">
<dt>Gallery</dt>
<dd><a href="#" title="Paul Cezanne">Paul Cezanne</a></dd>
<dd><a href="#" title="Henri Matisse">Henri Matisse</a></dd>
<dd><a href="#" title="Vincent van Gogh">Vincent van Gogh</a></dd>
<dd><a href="#" title="William Turner">William Turner</a></dd>
<dd><a href="#" title="John Constable">John Constable</a></dd>
<dd><a href="#" title="Claude Monet">Claude Monet</a></dd>
</dl>
</div>
</body>
</html>



lsb2002

职务:普通成员
等级:1
金币:0.0
发贴:20
注册:2007/3/15 12:48:57
#22007/4/12 11:06:47
谢谢楼主分享!!!!!!!!!!!!!!!!!!!!!!!!!!!!!



limq945

职务:普通成员
等级:1
金币:0.0
发贴:41
注册:2005/6/7 22:48:17
#32007/8/25 2:28:25
谢谢楼主



andy2003

职务:普通成员
等级:1
金币:0.0
发贴:1
注册:2006/2/17 20:17:10
#42007/8/28 10:12:56
谢谢楼主