browser default css code example
Example 1: set css to default
/* element {
property: initial
} */
p {
font: initial;
}
/*all gets all values*/
h1 {
all: initial;
}
Example 2: what is the default value of ul tag
<!-- The default value of <ul> tag's type is 'CIRCLE'--->