Created
November 1, 2019 04:59
-
-
Save joe-oli/ba192f17f4ef90aca37ebe5281dc990e to your computer and use it in GitHub Desktop.
unset all styles for a container
This file contains hidden or 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
<!--unset all styles for a container--> | |
<div id="container"> | |
<!-- stuff in here --> | |
</div> | |
<style> | |
#container { | |
all: initial; | |
* { | |
all: unset; | |
} | |
} | |
<style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment