Display:flex not working when added into my css no matter what I try

NathanTuc

My css and html looks like this:

#TopBar{
    

display: flex;
justify-content: space-between;
z-index: 1;
position: fixed;
top: 0px;
left: 0px;
background-color: rgb(25,25,25);
height:115px;
width: 2000px; 
}
#Logo{

    
top: 0px;

height: 110px; width: 110px;
display: inline-block;

z-index: 2;
background-size: contain;
}
.NavList{

color: grey;
text-decoration: none;
font-family: Arial;
font-size: 30px;
margin-top: 1.3%;
z-index: 3;
}
    

<div id = TopBar>
<ul style = "list-style-type:none;">
<a class = NavList id = NavHome href = "../index.html">HOME</a>
<a class = NavList id = NavLogin href = "AccountPage.html" onclick = 
"account()">ACCOUNT</a>
<a class = NavList id = NavAccount href = "../Rules 
Page/Rules.html">RULES</a>
<a class = NavList id = NavDark href = "FillerPage.html">LIGHT</a> 
</ul>
</div>
<a href="https://google.com"><img src="../Images/VenomLogo5.png" id = "Logo"> 
</img></a>
</div>
</head>

Whenever I add flex or any other things along with it like justify content it doesn't do anything, and I have no idea what I am doing wrong. I feel like it's very simple but I can't figure it out. Thanks in advance!

tsecheukfung01

See if this is what you want. You need to set the width in ul and set it to the flex container. Then you are able to add the space-between .

For the css part, I use the SCSS so that you can write nesting css.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

@Font-face not working no matter what I try

From Dev

Using CSS with Bootstrap will not work no matter what I try

From Dev

Using CSS with Bootstrap will not work no matter what I try

From Dev

What happens when I try to remove handler that was never added?

From Dev

JPanel not updating, no matter what i try

From Dev

JPanel not updating, no matter what i try

From Dev

Unable to find CsvReader no matter what I try

From Dev

UIScrollView not scrolling no matter what I try

From Dev

Why won't my button move up no matter what I try?

From Dev

No matter what i try, Samba shares keep promptig for login when trying to connect via windows

From Dev

jquery slideup not working no matter what I do

From Dev

Why is my .load() not working when I try to get specific div

From Dev

Why is my session not working when I try to count IP hits?

From Dev

Laravel 4 - No matter what code I put I get an error with my css page

From Dev

django.db.utils.OperationalError no matter what I try

From Dev

Bootstrap modal won't focus no matter what I try

From Dev

Oracle will not allow me to continue no matter what I try

From Dev

Webpack won't parse JSX no matter what I try

From Dev

Text-align: right; keep a margin no matter what I try

From Dev

Cannot access ActionController::Parameters no matter what I try

From Dev

Safari display flex not working when elements are 25%

From Dev

Why does my app crash when I try to display my ip usig Inet?

From Dev

Android http URL scheme is not working when I try to launch my application from a link on my website

From Dev

No matter what I do, no matter what I edit, every time I restart my computer my ELAN Smart Pad drivers reinstall

From Dev

My recyclerview inside a fragment is not updating no matter what I do

From Dev

my dialog box design is not changing no matter what i put

From Dev

Why isn't my PHP working when I try to count the number of rows in a table?

From Dev

Display error when i try to composer install

From Dev

CSS display:flex align-items:baseline not working in Firefox

Related Related

  1. 1

    @Font-face not working no matter what I try

  2. 2

    Using CSS with Bootstrap will not work no matter what I try

  3. 3

    Using CSS with Bootstrap will not work no matter what I try

  4. 4

    What happens when I try to remove handler that was never added?

  5. 5

    JPanel not updating, no matter what i try

  6. 6

    JPanel not updating, no matter what i try

  7. 7

    Unable to find CsvReader no matter what I try

  8. 8

    UIScrollView not scrolling no matter what I try

  9. 9

    Why won't my button move up no matter what I try?

  10. 10

    No matter what i try, Samba shares keep promptig for login when trying to connect via windows

  11. 11

    jquery slideup not working no matter what I do

  12. 12

    Why is my .load() not working when I try to get specific div

  13. 13

    Why is my session not working when I try to count IP hits?

  14. 14

    Laravel 4 - No matter what code I put I get an error with my css page

  15. 15

    django.db.utils.OperationalError no matter what I try

  16. 16

    Bootstrap modal won't focus no matter what I try

  17. 17

    Oracle will not allow me to continue no matter what I try

  18. 18

    Webpack won't parse JSX no matter what I try

  19. 19

    Text-align: right; keep a margin no matter what I try

  20. 20

    Cannot access ActionController::Parameters no matter what I try

  21. 21

    Safari display flex not working when elements are 25%

  22. 22

    Why does my app crash when I try to display my ip usig Inet?

  23. 23

    Android http URL scheme is not working when I try to launch my application from a link on my website

  24. 24

    No matter what I do, no matter what I edit, every time I restart my computer my ELAN Smart Pad drivers reinstall

  25. 25

    My recyclerview inside a fragment is not updating no matter what I do

  26. 26

    my dialog box design is not changing no matter what i put

  27. 27

    Why isn't my PHP working when I try to count the number of rows in a table?

  28. 28

    Display error when i try to composer install

  29. 29

    CSS display:flex align-items:baseline not working in Firefox

HotTag

Archive