Created
July 5, 2024 15:03
-
-
Save jeffersonchaves/5b168ef26d26dcb5416534a11dc17da2 to your computer and use it in GitHub Desktop.
unidade-medida.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Unidades Absolutas */ | |
div { | |
width: 300px; | |
height: 2cm; | |
} | |
/* Unidades Relativas */ | |
p { | |
font-size: 1.5em; | |
margin: 10%; | |
} | |
/* Unidades de Viewport */ | |
section { | |
width: 80vw; | |
height: 50vh; | |
} | |
/* Unidades de Tempo */ | |
@keyframes example { | |
from { opacity: 0; } | |
to { opacity: 1; } | |
} | |
div { | |
animation-duration: 2s; | |
} | |
/* Unidades de Ângulo */ | |
.rotate { | |
transform: rotate(45deg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment