Created
February 26, 2020 02:50
-
-
Save mtzrmzia/3c1d6a3d7e0ca2097f1fbf746668950f to your computer and use it in GitHub Desktop.
Tailwind Specificity Example
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
button.btn { | |
/* Mayor especificidad incluso en pantallas de más de 20px */ | |
font-size: 16px; | |
} | |
@media screen and (min-width: 20px) { | |
.large-text { | |
font-size: 40px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment