html - Position not rendering with specific div in css -
html - Position not rendering with specific div in css -
i have issue rendering position of specific element different screen resolutions.
below code:
class="snippet-code-css lang-css prettyprint-override">li.dashboard > ul { display:none; position:absolute; left:15.5%; top:138px; z-index:9; vertical-align:top !important; } li.dashboard li .subnav { position:relative; margin: 0px; margin-top: 10px; margin-left: 0px; }
class="snippet-code-html lang-html prettyprint-override"><li class="dashboard active" id=dashboard jquery1428391652078="2"> <a id=hldashboard href="permanentreqfollowup.aspx?2=7"> <span></span> <small></small> </a> <ul> <li jquery1428391652078="4"> <div class="subnav_bg subnav"> <ul class=subnav_ul> <li jquery1428391652078="6"> <a class="dxehyperlink permanentreqfollowup" id=hltechnipempfollowup href="permanentreqfollowup.aspx?2=9">monitoring of permanent employees requests</a> </li> <li jquery1428391652078="8"> <a class="dxehyperlink intrimreqfollowup" id=hlinterimempfollowup href="interimreqfollowup.aspx?2=10">monitoring of interim employees requests</a> </li> </ul> </div> </li> </ul> </li>
the position of dashboard
not rendering within .subnav
. positioning out of dashboard
when seek in screen resolutions.
problem occurs in ie works fine in chrome.
html css css3
Comments
Post a Comment