Ahora mismo la llamo "caja que muestra diferentes temas" y es puro CSS.
Qué os parece?
Código HTML:
Ver original
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <style type="text/css"> .caja { width:200px; position:relative; } .pestanya{ z-index:24; background-color:#ccc; color:#000; text-decoration:none; padding: 10px 5px; } .pestanya:hover{z-index:25; background-color:#E9E9E9} .pestanya .content1, .pestanya .content2, .pestanya .content3, .pestanya .content4, .pestanya .content5 {display: none} .inicio, .pestanya:hover .content1, .pestanya:hover .content2, .pestanya:hover .content3, .pestanya:hover .content4, .pestanya:hover .content5{ display:inline; position:absolute; left:100%; top:0%; background-color:#E9E9E9; font-weight:bold; font-size:2em; text-align: center; width:350px; height:100%; } </style> </head> <body bgcolor="orange"> <div class="caja"> </div> </body> </html>