Answers for "css inherit class"

CSS
0

inherit css

span {
    color: blue;
}

.extra span {
    color: inherit;
}
Posted by: Guest on January-22-2021
0

css inherit class

.rounded_corners {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

#header {
  .rounded_corners;
}

#footer {
  .rounded_corners;
}
Posted by: Guest on March-29-2020

Code answers related to "css inherit class"

Browse Popular Code Answers by Language