Answer the question
In order to leave comments, you need to log in
How to teach bootstrap mobile menu to open on the right?
There is a bootstrap 4 menu in the mobile version of which I want to open the menu not from the standard top, but it should go to the right with content overlapping as here
There is an instruction for this example to connect the Off-canvas library specifically for Bootstrap 4 doesn't work.. What's wrong?
Code and fiddle
Answer the question
In order to leave comments, you need to log in
.menu {
position: fixed;
left: 0;
top: 0;
transform: translateX(-100%);
transition: transform 0.3s ease;
&.isOpen {
transform: translateX(0);
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question