我需要在表单引导程序中对元素进行远程处理。
我的代码是:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<form class="form-inline" role="form">
<div class="form-group">
<label for="label_test_email">Send email</label>
<input type="text" class="form-control" id="test_email" name="test_email" />
</div>
<div class="form-group">
<input type="button" class="btn btn-warning" id="bottone_test_email" value="Test Email"/>
</div>
</form>
我需要解雇元素,任何人都可以帮助我?
答案 0 :(得分:0)
如果您需要在字段集和按钮之间留出更多距离,请执行以下操作:
cast(void*)
如果您还需要标签和字段之间的距离,请执行以下操作:
<style>
.form-inline .form-control{
margin-right:1em;
}
</style>