J
J
Jedi2018-02-27 12:05:53
Bootstrap
Jedi, 2018-02-27 12:05:53

How to implement such a menu using flexbox?

How can you implement a youtube menu using flexbox ?
What would be more correct to use to implement this ?
5a951f59ab118758497220.png
Addendum: I mean picture, name and email. How to arrange them like that?
Thank you!

Answer the question

In order to leave comments, you need to log in

1 answer(s)
T
TheRevan, 2018-02-27
@PHPjedi

what about flex? just the div with the menu has the following properties:

.menu{
position:fixed;
left:-300px;
top:0;
bottom:0
z-index: 100;
background-color:#000;
width:300px;
transition: left ease-in-out .3s
}
.menu.active{
left: 0px
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question