Created
August 8, 2019 15:53
-
-
Save Jagathishrex/23579993cfcd4a4345854c8046a64d80 to your computer and use it in GitHub Desktop.
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
<div class="red-container"> | |
<span> hello(green) </span> | |
<span > 👋 </span> | |
<span> Javascript Jeep </span> | |
I am red | |
</div> | |
// css | |
<style > | |
div { | |
--txtColor : red; | |
} | |
span { | |
--txtColor : blue; | |
} | |
div { | |
color : var(--txtColor) | |
} | |
span { | |
color : var(--txtColor) | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment