在下面的html中,我无法在一行中获得输入,尽管使用“form-inline”和label class =“sr-only”。我尝试了许多不同的事情,没有成功
<form class="form-inline">
<div class="form-group">
<label class="sr-only" for="hostname">Firewall hostname</label>
<input type="text" ng-model="hostname" class="form-control input-lg" id="hostname"
placeholder="Firewall">
</div>
<div class="form-group">
<label class="sr-only" for="subnet">Firewall subnet</label>
<input type="text" ng-model="subnet" class="form-control input-lg" id="subnet">
</div>
</form>
答案 0 :(得分:1)
所以你的HTML代码只包含空类。 写在你的css文件中:
.form-inline{
display:inline-block;
}
并且应该是好的:)
类(和id&#39; s)只有在您之前声明其行为时才会执行某些操作。