maxWAuto method

ContainerBuilder maxWAuto()

max-w-auto -->gt; max-width: auto; (使用内容宽度,不设置最大宽度)

Implementation

ContainerBuilder maxWAuto() {
  _maxWidth = null;
  return this;
}