[Webkit-unassigned] [Bug 15285] -webkit-box-shadow not showing on element that was hidden, is displayed
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Sep 26 00:58:43 PDT 2007
http://bugs.webkit.org/show_bug.cgi?id=15285
------- Comment #2 from pixelpp at gmail.com 2007-09-26 00:58 PDT -------
Okay cool.. basicly.. my (x)HTML/CSS is as follows:
p.s. thanks for all of the awesome work you do... I wish safari had a 90%
marketshare... it would make my job.... well.. fun. instead of painfull with IE
hacks!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Menu/Tab Test</title>
<style type="text/css">
body{
margin:0;
padding:0;
font:14px arial;
}
.menu {
height:25px;
}
.menu, .menu ul{
margin:0;
padding:0;
list-style:none;
background:#444;
border:1px solid #000;
-webkit-box-shadow: 0px 5px 5px #777;
}
.menu li{
float:left;
margin-right:5px;
}
.menu li a{
display:block;
line-height:15px;
padding:5px;
color:#fff;
}
.menu li ul{
display:none;
height:auto;
}
.menu li:hover ul{
display:block;
-webkit-box-shadow: 0px 5px 5px #777;
}
.menu li ul li{
float:none;
}
.menu li ul{
position:absolute;
}
</style>
</head>
<body>
<ul class="menu">
<li><a href="#page1">Page 1</a></li>
<li><a href="#page2">Page 2</a></li>
<li><a href="#page3">Page 3</a>
<ul>
<li><a href="#subpage1">Sub Page 1</a></li>
<li><a href="#subpage2">Sub Page 1</a></li>
</ul>
</li>
<li><a href="#page4">Page 4</a></li>
</ul>
</body>
</html>
--
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list