Answers for "default css"

CSS
1

set css to default

/* element {
  property: initial
} */
p {
  font: initial;
}

/*all gets all values*/
h1 {
  all: initial;
}
Posted by: Guest on December-30-2020
0

what is the default value of ul tag

<!-- The default value of <ul> tag's type is 'CIRCLE'--->
Posted by: Guest on September-30-2020

Browse Popular Code Answers by Language