- From: <Eugen.Konkov@aldec.com>
- Date: Tue, 23 Oct 2007 11:33:48 +0300
- To: <www-style@w3.org>
Received on Tuesday, 23 October 2007 08:35:40 UTC
ul.menu, ul.hmenu { margin: 0px; padding: 0px; border: 1px solid red; position: absolute; } ul.menu li { list-style-type: none; border: 1px solid green; position: relative; } ul.hmenu li { display: inline; list-style-type: none; border: 1px solid green; } <ul class="menu"> <li>1 <li>2 <li>3 <ul class="hmenu" style="left: 10px; bottom: -height +2px;"> <li>a <li>b </ul> </li> <ul> NOTICE: bottom: -height +2px it is equivalent to: top: ownerElementHeight -2px
Received on Tuesday, 23 October 2007 08:35:40 UTC