Created
February 6, 2020 09:41
-
-
Save hariharankgk/8aa0bf2d75e9477c63b7515a7f74a91b 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="parent"> | |
<p class="child1">child1</p> | |
<p class="child2">child2</p> | |
</div> | |
<style> | |
html { | |
font-size:100%; | |
} | |
.parent { | |
font-size:125%; /* font-size:20px; */ | |
} | |
.child1 { | |
font-size:2em; | |
} | |
.child2 { | |
font-size:2rem; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment