Dropdown list alignment issue (HTML/CSS)

后端 未结 3 1657
走了就别回头了
走了就别回头了 2021-01-29 05:43

I\'ve asked a question like this before, but I am using differnt code to last time.

I\'m trying to create a dropdown menu. Ther are certain elements in that main list th

3条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-29 06:27

    I just want to say a big thank you for all your answers. I don't know why it's taken so long, but I've finally figured it out.

    In the codepen I displayed, there was one important thing I was leaving off: The CSS file for the Mobile-Responsive framework known as Foundation. That CSS File had all ul tags have a margin-left of 1.25em. That is why the ul tag was moved over to the right.

    To fix this problem, I changed the following:

    nav ul ul {
        display: none;
        position: absolute;
        padding: 0;
        margin: 0;
    }
    

    I added a margin property and now it is all fine.

    Again, thank you to everyone who helped me with this answer and sorry for wasting your time.

    I wish you all well.

提交回复
热议问题