Answers for "css style inherit"

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
0

inherit styles

@mixin stuff {
  color: red;
}
.foo {
  @include stuff;
} 
.bar {
  @include stuff;
}
Posted by: Guest on May-25-2021

Browse Popular Code Answers by Language