How can I express “width: 100%” ? e.g. ```Table ( ...
# compose-web
d
How can I express “width: 100%” ? e.g.
Copy code
Table ( { style { width(100.percentage) } }) {
}
this doesn’t work
a
your snippet is how it should work, but we haven’t 100% coverage of all CSS properties yet As workaround you can use something like
property("width", "100%")
👍 1
d
I actually discovered “.percent” exists
✔️ 1
u
Yep Daniele, it's percent.