https://github.com/zeecoder/postcss-equal-height
PostCSS plugin + JS runtime combination to ensure equal height of certain elements.
https://github.com/zeecoder/postcss-equal-height
Last synced: about 1 month ago
JSON representation
PostCSS plugin + JS runtime combination to ensure equal height of certain elements.
- Host: GitHub
- URL: https://github.com/zeecoder/postcss-equal-height
- Owner: ZeeCoder
- Created: 2017-03-27T19:21:13.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-27T19:38:35.000Z (about 9 years ago)
- Last Synced: 2025-07-22T21:46:06.189Z (10 months ago)
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Idea
[Inspiration](https://github.com/eqcss/eqcss/issues/59#issuecomment-289527014)
In the following example, all divs with "child" classes would be the same
height, if the JS runtime is included.
Could work the same way
[Container Queries](https://github.com/ZeeCoder/container-query) work:
CSS ➡ PostCSS ➡ JSON ➡ Runtime
```css
.parent {
/* styling */
}
.child {
@equal-height; // or some more interop declaration
}
```
```html
```