IFCD0210/Practicas/Practicas HTML/Repaso/css/style.css
2023-12-05 13:49:01 +01:00

26 lines
323 B
CSS

@charset "UTF-8";
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
border: none;
outline: none;
}
h2{
text-decoration: underline overline red;
}
dl{
margin-left: 50px;
}
p{
padding: 0.5rem;
}
nav{
position: sticky;
top: 0;
width: 100%;
background-color: white;
}