Skip to content

Instantly share code, notes, and snippets.

@joe-oli
Created November 1, 2019 04:59
Show Gist options
  • Save joe-oli/ba192f17f4ef90aca37ebe5281dc990e to your computer and use it in GitHub Desktop.
Save joe-oli/ba192f17f4ef90aca37ebe5281dc990e to your computer and use it in GitHub Desktop.
unset all styles for a container
<!--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