prototypal-io / prius

A hybrid CSS preprocessor/runtime
MIT License
18 stars 0 forks source link

Fix inherited inline styles #5

Closed mmun closed 9 years ago

mmun commented 9 years ago

Fixes inherited inline styles:

<style>
  .foo { color: var(--color); }
</style>

<div style="--color: red;">
  <div class="foo">This is red.</div>
</div>