我有这个 html 文本
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<div class="glossary-form"></div>
<div class="form-group" style="display:inline-block; width:48%;padding-right: 5%;">
<label for="glossary_entry_input_1">Lemma IT</label>
<input type="text" class="form-control" id="glossary_entry_input_1" placeholder="">
</div>
<div class="form-group" style="display:inline-block; width:48%; padding-left: 5%;">
<label for="glossary_entry_input_2">Lemma CH</label>
<input type="text" class="form-control" id="glossary_entry_input_2" placeholder="">
</div>
<div class="form-group">
<label for="glossary_entry_input_3">Acronimo IT</label>
<small id="inputHelp" class="form-text text-muted">Inserire una sigla (se esiste) del Lemma. Nel caso in cui il lemma sia una grandezza fisica, inserire la lettera o il simbolo che la identifica.</small>
<input type="text" class="form-control" id="glossary_entry_input_3" placeholder="">
</div>
</div>
如您所见,生成以下表单字段,对齐一行
我想通过将第二个向右移动,将它们与我的 html 页面的垂直轴对称地显示,如您所见
这样“引理 CH”框的左边距与“Acronimo IT”框之一对齐。如何更改我的代码才能获得第二张图片中显示的结果?