Css width above 100%

css

Solution

Yes, as per the CSS 2.1 Specification, all non-negative values are valid for width, that includes percentage values above 100%.

Problem

Is correct to specify a width greater than 100% ? ``` .class{ width: 102%; } ```

Original source