# property-case > **Warning** This rule is deprecated and will be removed in the future. See [the migration guide](../../../docs/migration-guide/to-15.md). Specify lowercase or uppercase for properties. ```css a { width: 1px; } /** ↑ * This property */ ``` The [`fix` option](../../../docs/user-guide/options.md#fix) can automatically fix all of the problems reported by this rule. ## Options `string`: `"lower"|"upper"` ### `"lower"` The following patterns are considered problems: ```css a { Width: 1px } ``` ```css a { WIDTH: 1px } ``` ```css a { widtH: 1px } ``` ```css a { border-Radius: 5px; } ``` ```css a { -WEBKIT-animation-duration: 3s; } ``` ```css @media screen and (orientation: landscape) { WiDtH: 500px; } ``` The following patterns are _not_ considered problems: ```css a { width: 1px } ``` ```css a { border-radius: 5px; } ``` ```css a { -webkit-animation-duration: 3s; } ``` ```css @media screen and (orientation: landscape) { width: 500px; } ``` ### `"upper"` The following patterns are considered problems: ```css a { Width: 1px } ``` ```css a { width: 1px } ``` ```css a { widtH: 1px } ``` ```css a { border-Radius: 5px; } ``` ```css a { -WEBKIT-animation-duration: 3s; } ``` ```css @media screen and (orientation: landscape) { WiDtH: 500px; } ``` The following patterns are _not_ considered problems: ```css a { WIDTH: 1px } ``` ```css a { BORDER-RADIUS: 5px; } ``` ```css a { -WEBKIT-ANIMATION-DURATION: 3s; } ``` ```css @media screen and (orientation: landscape) { WIDTH: 500px; } ``` ## Optional secondary options ### `ignoreSelectors: ["/regex/", /regex/, "string"]` Given: ```json [ "lower", { "ignoreSelectors": [":export"] } ] ``` The following patterns are _not_ considered problems: ```css :export { camelCase: value; } ```