Is there a way to use the @extend feature in CSS to inherit properties from one class to another? Imagine having two CSS files loading on a page in this order:
<link rel="stylesheet" href="/css/one.css" media="screen">
<link rel="stylesheet" href="/css/two.css" media="screen">
Where one.css contains the following class:
.foo {
color: red;
}
Can we achieve something like this in two.css:
.bar {
@extend .foo;
}