Waarom blijven er punten in mijn navbar staan? Weet jij wat ik verkeerd doe?
Ik heb gekeken naar:
https://www.w3schools.com/css/css_navbar.asp
YouTube: How to create Vertical Navigation Bar Using html and css
Ik heb gekeken naar:
https://www.w3schools.com/css/css_navbar.asp
YouTube: How to create Vertical Navigation Bar Using html and css
HTML:
1
2
3
4
5
6
7
8
9
| <div id="navbar"> <ul> <li><a href="#home">Home</a></li> <li><a href="#news">News</a></li> <li><a href="#contact">Contact</a></li> </ul> </div> <div class="page-wrapper"> |
Cascading Stylesheet:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| /* Style the navbar */ #navbar { list-style-type: none; margin: 0; padding: 0; overflow: hidden; background-color: #333; position: fixed; top: 30; width: 300; } /* Navbar links */ #navbar a { list-style-type: none; float:none; display: block; color: #f2f2f2; text-align:left; padding: 14px; text-decoration: none; } |
[ Voor 1% gewijzigd door Creepy op 04-04-2020 23:59 ]