Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have been trying to figure out why NavBar drop-down getting overlapped inside ui-layout. This seems very basic and am definitely missing some very basic steps. (By the way I am new to Angular)

Check the plunker for issue details

Plunker[^]

What I have tried:

I have looked all over the web and tried z-index, overflow:hidden and other small hecks.
Posted
Updated 12-Dec-16 18:30pm
v2

1 solution

This will get fixed by adding
JavaScript
style="overflow:visible"


Change this

JavaScript
<div ui-layout-container size="10%" >


To

JavaScript
<div ui-layout-container size="10%" style="overflow:visible" >
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900