+ 1
Making a hamburger menu
https://code.sololearn.com/W41a13A8a3a2 In the hamburger menu the bars should actually be distributed equally, but it's not happening in the code. I have used - display: flex; flex-direction: column; justify-content: space-between; for doing the job and as long as I know it should work.
6 Antworten
+ 2
at least look at this code:
https://code.sololearn.com/WZcNM90uJoIa/?ref=app
+ 1
Hi! because you only have a stylesheet, and the html section lacks the elements, tags, that should create this menu for you
+ 1
@Yaroslav Vernigora Can you tell me what tag I have missed in the html. I didn't see anything wrong there.
+ 1
oh yeah, I kind of noticed your menu in the upper-left corner of the screen, but it's so small... barely noticeable... try to increase it in size
+ 1
Change the pixels of the .menu-icon to “vw” and “vh”.
Something like
Width: 50vw
Height: 50vh.
(Im not a pro but I changed that and it was better)
0
Just change
.menu-icon{
height: 30px;
}
Good luck!!