I'd like support for the CSS3 unit rem (root em) in PhpED. At present, giving something a size in rem gives the parsing error "expected dimension". Adding it as a CSS3 keyword didn't help as it's not an attribute.
It's no big problem but I'd like to avoid the squiggly line.
There's other units of measurement. Also, a way to do quickly vendor specific attributes would be nice, e.g. convert:
to:
-moz-flex-direction: column;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; |
This would be a great time-saver.