1 W017
Chris Rebert редактировал(а) эту страницу 2016-02-01 12:50:30 -08:00

W017

Found one or more <input>s missing a type attribute.

It's best-practice to always set an explicit type on <input>s. If an <input> lacks a type attribute, it defaults to being a type="text".

Bootstrap will only fully style <input>s which have a valid type attribute.

Wrong:

<input value="Something">

Right:

<input type="text" value="Something">