element ref
shapes
rect
rect defines a sharp cornered rectangle
rect | x | y | sizex | sizey | bottom right corner | bottom left corner | top right corner | top left corner |
  • x / x position on screen
  • y / y position on screen
  • sizex / size in the x-axis direction
  • sizey / size in the y-axis direction
  • bottom right corner / bottom right corner radius
  • bottom left corner / bottom left corner radius
  • top right corner / top right corner radius
  • top left corner / bottom left corner radius
fill orange

# bottom right corner
roundRect 10 10 50 50 10 0 0 0

# bottom left corner
roundRect 70 10 50 50 0 10 0 0

# top right corner
roundRect 130 10 50 50 0 0 10 0

# top left corner
roundRect 190 10 50 50 0 0 0 10

all rights reserved 2018 © - cssscript.org