CSS - como hacer visible un menu css sobre otros franes

 
Vista:

como hacer visible un menu css sobre otros franes

Publicado por jesus (1 intervención) el 10/02/2010 14:28:57
please si pueden ayudarme con esta duda, estoy creando un menu , mi web site tiene frames menu, top y mainframe, como puedo hacer para que el menu sobre pase las lineas o salga sobre el mainframe.

este es el codigo solo del menu,

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Menu- ::: La Nueva Concordia, Chiapas :::</title>
 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 
<style type="text/css">
 
ul.menu_color
{
	list-style:none;
}
ul.menu_color li
{
	display:block;
	position:relative;
	padding:1px 5px;
	background:#8888ff;
	border-right:1px solid blue;
	border-bottom:1px solid blue;
	border-top:1px solid #ccccff;
	border-left:1px solid #ccccff;
	width:165px;
}
ul.menu_color ul
{
	position:absolute;
	left:51px;
	top:-1px;
	display:none;
	list-style:none;
}
ul.menu_color li:hover
{
	background:#aaaaff;
	border-right:1px solid #ccccff;
	border-bottom:1px solid #ccccff;
	border-top:1px solid blue;
	border-left:1px solid blue;
}
ul.menu_color li:hover > ul
{
	display:block;
	float: left;
}
</style>
</head>
 
<body>
<ul>
<ul class="menu_color">
   <li>opcion 1
      <ul>
         <li>una a</li>
         <li>una b</li>
      </ul>
   </li>
   <li class="menu">opcion 2
      <ul>
         <li>una c
            <ul>
               <li>otra</li>
               <li>mas</li>
            </ul>
         </li>
         <li class="menu">una d</li>
      </ul>
   </li>
</ul>
</body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder