如何获得无法识别类名的警告?

时间:2016-07-11 12:15:12

标签: html css webstorm atom-editor

今天我写了代码:

<div class="container">
  <form class="form-inline" role="form">
    <div class="form-group">
      <label for="first">FIRST</label>
      <input class="form-control" id="first" ng-model="???" ng-readonly="true" />
    </div>

    <div class="form-group">
      <label for="second">SECOND</label>
      <input class="form-control" id="second" ng-model="???" ng-readonly="true" />
    </div>

    <div class="form-group">
      <label for="third">THIRD</label>
      <input class="form-control" id="third" ng-model="???" ng-readonly="true" />
    </div>

    <div class="form-group">
      <label for="fourth">FOURTH</label>
      <input class="form-control" id="fourth" ng-model="???" ng-readonly="true" />
    </div>
  </form>
</div>

此代码的目的是获取一个表单,其所有元素都在同一行中。为了实现这一点,我使用了“form-inline”类,它是Bootstrap目录的一部分。但是,由于我没有在头文件中加载Bootstrap文件,因此我得到了单独行中的元素。

所以我花了很多时间来理解我的文件有什么问题。 我的期望是我的浏览器/ IDE在使用未知类时出错。你知道我怎么能得到这个功能吗?

0 个答案:

没有答案