For the css padding, what should I do if the user ...
# tornadofx
r
For the css padding, what should I do if the user has
paddingLeft = 10.px
, but there is no padding set already? The obvious way would be to do
box(0.px, 0.px, 0.px, value)
, but that could override any implicit padding generated in the code. Is that an acceptable trade-off?