im having my code by css to make drop down menu but i want to insert my menu into table this is my code :
<head>
<title>List</title>
<style type="text/css">
<!--
body {
margin:0;
padding:0;
background-color: #000000;
}
#list {
background:#666 666;
color:#6699CC;
height:20px;
z-index:1;
position:absolu te;
overflow: hidden;
border:2px #2A2A2A solid;
left: 2;
top: 2px;
}
#list:hover {
background:#FF3 300;
color:#000000;
height:auto;
}
#list a:hover{
background:#000 066;
display:block;
}
#list a{
color: #FFFFFF;
text-decoration:none ;
display:block;
padding:2px 8px;
}
.macromedia {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
background-color: #333333;
padding: 4px;
display:block;
cursor:default;
font-weight: bold;
}
a:link {
color: #CCCCCC;
}
p{font-family: Arial, Helvetica, sans-serif;color:#FF FFFF;}
-->
</style>
</head>
<body>
i want to insert this div tag into table to controll it how?
</html>
<head>
<title>List</title>
<style type="text/css">
<!--
body {
margin:0;
padding:0;
background-color: #000000;
}
#list {
background:#666 666;
color:#6699CC;
height:20px;
z-index:1;
position:absolu te;
overflow: hidden;
border:2px #2A2A2A solid;
left: 2;
top: 2px;
}
#list:hover {
background:#FF3 300;
color:#000000;
height:auto;
}
#list a:hover{
background:#000 066;
display:block;
}
#list a{
color: #FFFFFF;
text-decoration:none ;
display:block;
padding:2px 8px;
}
.macromedia {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
background-color: #333333;
padding: 4px;
display:block;
cursor:default;
font-weight: bold;
}
a:link {
color: #CCCCCC;
}
p{font-family: Arial, Helvetica, sans-serif;color:#FF FFFF;}
-->
</style>
</head>
<body>
i want to insert this div tag into table to controll it how?
<div id="list">
<div align="center"> <span class="macromed ia">Macromedi a</span>
<a href="#" >Flash</a>
<a href="#" >Flex</a>
<a href="#" >Fireworks</a>
<a href="#" >Freehand</a>
<a href="#" >Dreamwaver</a> </div>
</div>
</body><div align="center"> <span class="macromed ia">Macromedi a</span>
<a href="#" >Flash</a>
<a href="#" >Flex</a>
<a href="#" >Fireworks</a>
<a href="#" >Freehand</a>
<a href="#" >Dreamwaver</a> </div>
</div>
</html>
Comment