encre-css 0.20.1

A TailwindCSS-compatible utility-first CSS generation library written in Rust
Documentation
Utilities for controlling an element's perspective origin when placed in 3D space.

<table style="display: table;">
  <thead>
    <tr>
      <th style="text-align: center;">Class</th>
      <th style="text-align: center;">Properties</th>
    </tr>
  </thead>
  <tbody>
    <tr><td>perspective-origin-center</td><td>perspective-origin: center;</td></tr>
    <tr><td>perspective-origin-top</td><td>perspective-origin: top;</td></tr>
    <tr><td>perspective-origin-top-right</td><td>perspective-origin: top right;</td></tr>
    <tr><td>perspective-origin-right</td><td>perspective-origin: right;</td></tr>
    <tr><td>perspective-origin-bottom-right</td><td>perspective-origin: bottom right;</td></tr>
    <tr><td>perspective-origin-bottom</td><td>perspective-origin: bottom;</td></tr>
    <tr><td>perspective-origin-bottom-left</td><td>perspective-origin: bottom left;</td></tr>
    <tr><td>perspective-origin-left</td><td>perspective-origin: left;</td></tr>
    <tr><td>perspective-origin-top-left</td><td>perspective-origin: top left;</td></tr>
  </tbody>
</table>

### Arbitrary values

Any [`<position>`](crate::utils::value_matchers::is_matching_position) property is allowed as arbitrary value.
For example, `perspective-origin-[top_0.1rem]`.


[Tailwind reference](https://tailwindcss.com/docs/perspective-origin)