maxW method

ContainerBuilder maxW(
  1. double maxWidthValue
)

max-w(double maxWidth) -->gt; max-width: value; (自定义最大宽度 - 简洁版)

Implementation

ContainerBuilder maxW(double maxWidthValue) {
  _maxWidth = maxWidthValue;
  return this;
}