How to set position fixed bottom on particular dropdown bottom?
Answers
Answered by
2
✔️✔️✔️✔️✔️✔️✔️
Correct Answer
move it down 30px, it will be 30px off the bottom of the screen. By setting the top and bottom and no height, it will always be stretched to meet the size of the viewport
command
.shifter-enabled .shifter-navigation {
width: 270px;
height: 100%;
position: fixed;
padding-bottom: 20px;
top: 30px;
left: 0;
z-index: 5;
background: #ffffff;
display: block;
overflow-y: scroll;
pointer-events: none;
-webkit-transition: opacity 0.001s linear 0.2s, -webkit-transform 0.2s ease;
transition: opacity 0.001s linear 0.2s, transform 0.2s ease;
}
Correct Answer
move it down 30px, it will be 30px off the bottom of the screen. By setting the top and bottom and no height, it will always be stretched to meet the size of the viewport
command
.shifter-enabled .shifter-navigation {
width: 270px;
height: 100%;
position: fixed;
padding-bottom: 20px;
top: 30px;
left: 0;
z-index: 5;
background: #ffffff;
display: block;
overflow-y: scroll;
pointer-events: none;
-webkit-transition: opacity 0.001s linear 0.2s, -webkit-transform 0.2s ease;
transition: opacity 0.001s linear 0.2s, transform 0.2s ease;
}
Similar questions