make element no styles

Solutions on MaxInterview for make element no styles by the best coders in the world

showing results for - "make element no styles"
Faith
02 Aug 2020
1.reset-this {
2    animation : none;
3    animation-delay : 0;
4    animation-direction : normal;
5    animation-duration : 0;
6    animation-fill-mode : none;
7    animation-iteration-count : 1;
8    animation-name : none;
9    animation-play-state : running;
10    animation-timing-function : ease;
11    backface-visibility : visible;
12    background : 0;
13    background-attachment : scroll;
14    background-clip : border-box;
15    background-color : transparent;
16    background-image : none;
17    background-origin : padding-box;
18    background-position : 0 0;
19    background-position-x : 0;
20    background-position-y : 0;
21    background-repeat : repeat;
22    background-size : auto auto;
23    border : 0;
24    border-style : none;
25    border-width : medium;
26    border-color : inherit;
27    border-bottom : 0;
28    border-bottom-color : inherit;
29    border-bottom-left-radius : 0;
30    border-bottom-right-radius : 0;
31    border-bottom-style : none;
32    border-bottom-width : medium;
33    border-collapse : separate;
34    border-image : none;
35    border-left : 0;
36    border-left-color : inherit;
37    border-left-style : none;
38    border-left-width : medium;
39    border-radius : 0;
40    border-right : 0;
41    border-right-color : inherit;
42    border-right-style : none;
43    border-right-width : medium;
44    border-spacing : 0;
45    border-top : 0;
46    border-top-color : inherit;
47    border-top-left-radius : 0;
48    border-top-right-radius : 0;
49    border-top-style : none;
50    border-top-width : medium;
51    bottom : auto;
52    box-shadow : none;
53    box-sizing : content-box;
54    caption-side : top;
55    clear : none;
56    clip : auto;
57    color : inherit;
58    columns : auto;
59    column-count : auto;
60    column-fill : balance;
61    column-gap : normal;
62    column-rule : medium none currentColor;
63    column-rule-color : currentColor;
64    column-rule-style : none;
65    column-rule-width : none;
66    column-span : 1;
67    column-width : auto;
68    content : normal;
69    counter-increment : none;
70    counter-reset : none;
71    cursor : auto;
72    direction : ltr;
73    display : inline;
74    empty-cells : show;
75    float : none;
76    font : normal;
77    font-family : inherit;
78    font-size : medium;
79    font-style : normal;
80    font-variant : normal;
81    font-weight : normal;
82    height : auto;
83    hyphens : none;
84    left : auto;
85    letter-spacing : normal;
86    line-height : normal;
87    list-style : none;
88    list-style-image : none;
89    list-style-position : outside;
90    list-style-type : disc;
91    margin : 0;
92    margin-bottom : 0;
93    margin-left : 0;
94    margin-right : 0;
95    margin-top : 0;
96    max-height : none;
97    max-width : none;
98    min-height : 0;
99    min-width : 0;
100    opacity : 1;
101    orphans : 0;
102    outline : 0;
103    outline-color : invert;
104    outline-style : none;
105    outline-width : medium;
106    overflow : visible;
107    overflow-x : visible;
108    overflow-y : visible;
109    padding : 0;
110    padding-bottom : 0;
111    padding-left : 0;
112    padding-right : 0;
113    padding-top : 0;
114    page-break-after : auto;
115    page-break-before : auto;
116    page-break-inside : auto;
117    perspective : none;
118    perspective-origin : 50% 50%;
119    position : static;
120    /* May need to alter quotes for different locales (e.g fr) */
121    quotes : '\201C' '\201D' '\2018' '\2019';
122    right : auto;
123    tab-size : 8;
124    table-layout : auto;
125    text-align : inherit;
126    text-align-last : auto;
127    text-decoration : none;
128    text-decoration-color : inherit;
129    text-decoration-line : none;
130    text-decoration-style : solid;
131    text-indent : 0;
132    text-shadow : none;
133    text-transform : none;
134    top : auto;
135    transform : none;
136    transform-style : flat;
137    transition : none;
138    transition-delay : 0s;
139    transition-duration : 0s;
140    transition-property : none;
141    transition-timing-function : ease;
142    unicode-bidi : normal;
143    vertical-align : baseline;
144    visibility : visible;
145    white-space : normal;
146    widows : 0;
147    width : auto;
148    word-spacing : normal;
149    z-index : auto;
150    /* basic modern patch */
151    all: initial;
152    all: unset;
153}
154
155/* basic modern patch */
156
157#reset-this-root {
158    all: initial;
159    * {
160        all: unset;
161    }
162}
163