Can I specify maxlength in css?

css, html

Solution

No. This needs to be done in the HTML. You could set the value with Javascript if you need to though.

Problem

Can I replace the maxlength attribute with something in CSS? ``` <input type='text' id="phone_extension" maxlength="4" /> ```

Original source