Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created August 8, 2019 15:53
Show Gist options
  • Save Jagathishrex/23579993cfcd4a4345854c8046a64d80 to your computer and use it in GitHub Desktop.
Save Jagathishrex/23579993cfcd4a4345854c8046a64d80 to your computer and use it in GitHub Desktop.
<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