Answers for "class inherit from other class css"

CSS
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 "class inherit from other class css"

Browse Popular Code Answers by Language