-1

I was trying to create a side menu for my website and I have used flex property for the items in it but they don't look right with the current alignment, so I wanted to change the alignment and its justification but couldn't do it.

I tried different properties like align items, align text, align content, and even justify content and justify items but none of them helped me.

I want to align the items to left and justify it to make it look better.

This is the link of the repository in github: https://github.com/abhishek12221732/Music-Mania.git

The image of menu I am getting

1 Answers1

0

Add:

align-items:flex-start;

To the flexbox containing the menu (in your code this is the div with the class of "leftmenue". To do this add align-items: flex-start; to this class in your mm.css file.

As other have said, it's best to copy (a piece of) your code here to github so that people can easier diagnose the problem and help you.

Data Moose
  • 367
  • 1
  • 6