CSS Flexible Box Layout support added


PD4ML v4.0.6 introduces flexbox layout support.

Children of a flex container can “flex” their sizes, either growing to fill unused space or shrinking to avoid overflowing the parent. Both horizontal and vertical alignment of the children is supported.

CSS Transform Property Supported


PD4ML v4.0.3 implements CSS transform feature e.g. to rotate, scale, skew HTML objects.

Here is a list of supported transform functions:

  • translate(x, y)
  • translatex(x)
  • translatey(y)
  • skew(x-angle,y-angle)
  • skewx(x-angle)
  • skewy(y-angle)
  • scale(x,y)
  • scalex(x)
  • scaley(y)
  • matrix(n,n,n,n,n,n)
  • rotate(angle)
  • rotatez(angle)