CSS Dropdown Menu Not Applying Z-Index



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















To start off, I know there are questions similar to mine and this is a repeated question, but none of the solutions have resolved my problem. I'm not sure why this is occurring, but my dropdown menu is not applying the -1 z-index no matter what I do. Essentially, if I hover over where the element ends up being, it just appears, so it has a z-index of 10, just like the header. I can't include anymore code because it won't let me post anything if I do that, but the header has a position of absolute and a z-index of 10.



Edit: Explaining again that I know there are similar questions and/or duplicate questions, but none have resolved my issue.



HTML



<ul>
<li class="menu-item"><a href="#">HOME</a></li>
<li class="menu-item"><a href="#">JOURNAL</a></li>
<li class="menu-item dropdown-item">
<a href="#">MEMBERS
<span class="icon-container">
<i class="fas fa-chevron-down"></i>
</span>
</a>
<ul class='dropdown-menu'>
<li class="dropdown-link"><a href="#">Member 1</a></li>
<li class="dropdown-link"><a href="#">Member 2</a></li>
<li class="dropdown-link"><a href="#">Member 3</a></li>
</ul>
</li>
<li class="menu-item"><a href="#">VIDEOS</a></li>
</ul>


ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;


&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;


&:hover
.icon-container
transform: rotate(180deg);

.dropdown-menu
opacity: 1;
transform: translateY(0);
z-index: 0;


ul.dropdown-menu
position: absolute;
z-index: -1 !important;
opacity: 0;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;

&:hover
a
color: $pink;


a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;





&:last-child
a
&::after
content: none;



a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);













share|improve this question
























  • Possible duplicate of Css dropdown menu z-index issue

    – First Name
    Nov 14 '18 at 0:37











  • Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.

    – valtro05
    Nov 14 '18 at 0:40

















0















To start off, I know there are questions similar to mine and this is a repeated question, but none of the solutions have resolved my problem. I'm not sure why this is occurring, but my dropdown menu is not applying the -1 z-index no matter what I do. Essentially, if I hover over where the element ends up being, it just appears, so it has a z-index of 10, just like the header. I can't include anymore code because it won't let me post anything if I do that, but the header has a position of absolute and a z-index of 10.



Edit: Explaining again that I know there are similar questions and/or duplicate questions, but none have resolved my issue.



HTML



<ul>
<li class="menu-item"><a href="#">HOME</a></li>
<li class="menu-item"><a href="#">JOURNAL</a></li>
<li class="menu-item dropdown-item">
<a href="#">MEMBERS
<span class="icon-container">
<i class="fas fa-chevron-down"></i>
</span>
</a>
<ul class='dropdown-menu'>
<li class="dropdown-link"><a href="#">Member 1</a></li>
<li class="dropdown-link"><a href="#">Member 2</a></li>
<li class="dropdown-link"><a href="#">Member 3</a></li>
</ul>
</li>
<li class="menu-item"><a href="#">VIDEOS</a></li>
</ul>


ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;


&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;


&:hover
.icon-container
transform: rotate(180deg);

.dropdown-menu
opacity: 1;
transform: translateY(0);
z-index: 0;


ul.dropdown-menu
position: absolute;
z-index: -1 !important;
opacity: 0;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;

&:hover
a
color: $pink;


a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;





&:last-child
a
&::after
content: none;



a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);













share|improve this question
























  • Possible duplicate of Css dropdown menu z-index issue

    – First Name
    Nov 14 '18 at 0:37











  • Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.

    – valtro05
    Nov 14 '18 at 0:40













0












0








0








To start off, I know there are questions similar to mine and this is a repeated question, but none of the solutions have resolved my problem. I'm not sure why this is occurring, but my dropdown menu is not applying the -1 z-index no matter what I do. Essentially, if I hover over where the element ends up being, it just appears, so it has a z-index of 10, just like the header. I can't include anymore code because it won't let me post anything if I do that, but the header has a position of absolute and a z-index of 10.



Edit: Explaining again that I know there are similar questions and/or duplicate questions, but none have resolved my issue.



HTML



<ul>
<li class="menu-item"><a href="#">HOME</a></li>
<li class="menu-item"><a href="#">JOURNAL</a></li>
<li class="menu-item dropdown-item">
<a href="#">MEMBERS
<span class="icon-container">
<i class="fas fa-chevron-down"></i>
</span>
</a>
<ul class='dropdown-menu'>
<li class="dropdown-link"><a href="#">Member 1</a></li>
<li class="dropdown-link"><a href="#">Member 2</a></li>
<li class="dropdown-link"><a href="#">Member 3</a></li>
</ul>
</li>
<li class="menu-item"><a href="#">VIDEOS</a></li>
</ul>


ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;


&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;


&:hover
.icon-container
transform: rotate(180deg);

.dropdown-menu
opacity: 1;
transform: translateY(0);
z-index: 0;


ul.dropdown-menu
position: absolute;
z-index: -1 !important;
opacity: 0;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;

&:hover
a
color: $pink;


a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;





&:last-child
a
&::after
content: none;



a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);













share|improve this question
















To start off, I know there are questions similar to mine and this is a repeated question, but none of the solutions have resolved my problem. I'm not sure why this is occurring, but my dropdown menu is not applying the -1 z-index no matter what I do. Essentially, if I hover over where the element ends up being, it just appears, so it has a z-index of 10, just like the header. I can't include anymore code because it won't let me post anything if I do that, but the header has a position of absolute and a z-index of 10.



Edit: Explaining again that I know there are similar questions and/or duplicate questions, but none have resolved my issue.



HTML



<ul>
<li class="menu-item"><a href="#">HOME</a></li>
<li class="menu-item"><a href="#">JOURNAL</a></li>
<li class="menu-item dropdown-item">
<a href="#">MEMBERS
<span class="icon-container">
<i class="fas fa-chevron-down"></i>
</span>
</a>
<ul class='dropdown-menu'>
<li class="dropdown-link"><a href="#">Member 1</a></li>
<li class="dropdown-link"><a href="#">Member 2</a></li>
<li class="dropdown-link"><a href="#">Member 3</a></li>
</ul>
</li>
<li class="menu-item"><a href="#">VIDEOS</a></li>
</ul>


ul
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;


&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;


&:hover
.icon-container
transform: rotate(180deg);

.dropdown-menu
opacity: 1;
transform: translateY(0);
z-index: 0;


ul.dropdown-menu
position: absolute;
z-index: -1 !important;
opacity: 0;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;

&:hover
a
color: $pink;


a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;





&:last-child
a
&::after
content: none;



a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);










css sass z-index dropdown






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 14 '18 at 0:43







valtro05

















asked Nov 14 '18 at 0:16









valtro05valtro05

466




466












  • Possible duplicate of Css dropdown menu z-index issue

    – First Name
    Nov 14 '18 at 0:37











  • Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.

    – valtro05
    Nov 14 '18 at 0:40

















  • Possible duplicate of Css dropdown menu z-index issue

    – First Name
    Nov 14 '18 at 0:37











  • Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.

    – valtro05
    Nov 14 '18 at 0:40
















Possible duplicate of Css dropdown menu z-index issue

– First Name
Nov 14 '18 at 0:37





Possible duplicate of Css dropdown menu z-index issue

– First Name
Nov 14 '18 at 0:37













Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.

– valtro05
Nov 14 '18 at 0:40





Again, as stated in the question, I know this is a duplicate, but the answer didn't resolve my issue.

– valtro05
Nov 14 '18 at 0:40












1 Answer
1






active

oldest

votes


















1














This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.



What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.



ul 
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;


&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;


&:hover
.icon-container
transform: rotate(180deg);

.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;


ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;

&:hover
a
color: $pink;


a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;





&:last-child
a
&::after
content: none;



a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);









share|improve this answer























  • Ah, got it! Thank you!

    – valtro05
    Nov 14 '18 at 0:50











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291363%2fcss-dropdown-menu-not-applying-z-index%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.



What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.



ul 
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;


&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;


&:hover
.icon-container
transform: rotate(180deg);

.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;


ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;

&:hover
a
color: $pink;


a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;





&:last-child
a
&::after
content: none;



a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);









share|improve this answer























  • Ah, got it! Thank you!

    – valtro05
    Nov 14 '18 at 0:50















1














This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.



What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.



ul 
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;


&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;


&:hover
.icon-container
transform: rotate(180deg);

.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;


ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;

&:hover
a
color: $pink;


a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;





&:last-child
a
&::after
content: none;



a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);









share|improve this answer























  • Ah, got it! Thank you!

    – valtro05
    Nov 14 '18 at 0:50













1












1








1







This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.



What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.



ul 
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;


&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;


&:hover
.icon-container
transform: rotate(180deg);

.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;


ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;

&:hover
a
color: $pink;


a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;





&:last-child
a
&::after
content: none;



a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);









share|improve this answer













This is because it takes on the parent z-index. There's really no way around this. The reason why it is displaying when you hover where it's "supposed" to be, is because it's there. Giving something an opacity of 0, leaves in in place...but makes it invisible.



What you want to do is toggle between visibility: hidden and visibility: visible. This way you aren't tying to just hide something using z-index and opacity.



ul 
float: right;
list-style: none;
@include clearfix;
li.menu-item
float: left;
position: relative;
z-index: 10;
&.current-menu-item,
&.current_page_item,
&:hover
a
color: $pink;


&.dropdown-item
.icon-container
display: inline-block;
transition: all .2s ease-in-out;
transform: rotate(0);
margin-left: 5px;
i
font-size: 1.8rem;


&:hover
.icon-container
transform: rotate(180deg);

.dropdown-menu
opacity: 1;
visibility: visible;
transform: translateY(0);
z-index: 0;


ul.dropdown-menu
position: absolute;
opacity: 0;
visibility: hidden;
transform: translateY(50px);
transition: all .2s ease-in-out;
min-width: 200px;
background: $grey;
padding: 10px 15px;
li.dropdown-link
border-bottom: 1px solid $light-grey;
padding-bottom: 5px;
&:last-of-type
border-bottom: none;
padding-bottom: 0;

&:hover
a
color: $pink;


a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
position: relative;
&::after
content: none;





&:last-child
a
&::after
content: none;



a
display: block;
font-family: 'Oswald', sans-serif;
font-weight: $medium;
color: $white;
transition: all .2s ease-in-out;
text-decoration: none;
font-size: 2rem;
padding: 10px 16px;
position: relative;
&::after
content: '';
display: block;
position: absolute;
height: 5px;
width: 5px;
background: $white;
right: -2px;
top: 50%;
transform: translateY(-50%) rotate(45deg);










share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 14 '18 at 0:47









EricEric

1866




1866












  • Ah, got it! Thank you!

    – valtro05
    Nov 14 '18 at 0:50

















  • Ah, got it! Thank you!

    – valtro05
    Nov 14 '18 at 0:50
















Ah, got it! Thank you!

– valtro05
Nov 14 '18 at 0:50





Ah, got it! Thank you!

– valtro05
Nov 14 '18 at 0:50



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53291363%2fcss-dropdown-menu-not-applying-z-index%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)