Files
React/2025. 02. 17/test/src/css/Nav.css
2025-02-18 10:43:28 +01:00

18 lines
252 B
CSS

nav {
background-color: black;
color: white;
}
ul {
display: flex;
align-items: center;
justify-content: space-evenly;
margin: 0;
padding: 10px;
list-style: none;
}
ul a {
color: white;
text-decoration: none;
}