Is there a way to import the styling of a single CSS selector into another CSS selector and add to it or rewrite properties from it.
Let\'s say:
.ori
Not directly, no.
You could do something like this in your HTML:
...
This will have the same effect, but you will have to do this for every element you want styled that way.
There is also the option of using a CSS pre-processor, like SASS, which supports inheritance/mixins.