css cwela
Data utworzenia: 2025-04-07 10:13:43
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
font-size: 24px;
background-color: #222;
color: white;
}
nav {
display: flex;
width: 100%;
height: 60px;
background-color: rgb(142, 223, 243);
text-align: center;
justify-content: flex-end;
}
nav ul {
display: flex;
text-decoration: none;
}
li {
margin: auto 20px;
list-style-type: none;
}
a {
text-decoration: none;
}
Powrót