【发布时间】:2018-08-09 20:21:26
【问题描述】:
我正在做一个 Ionic 3 应用程序,但我在设计它时遇到了问题。具体的HTML代码是这样的:
<div class="use-conditions">
<ion-checkbox class="checkbox" formControlName="acceptUseConditions"></ion-checkbox>
<ion-label text-wrap class="checkbox-label">Want to center this text and the checkbox</ion-label>
</div>
<button class="submit-button" ion-button round type="submit">ENTER</button>
它水平填充所有空间(它与内部ion-label 具有相同的宽度)。而且,如果我尝试将此 CSS 应用于“使用条件”div:
.use-conditions {
margin-left: auto;
margin-right: auto;
width: 50%
}
它暂时居中(好!):
所以,我认为将宽度设置为 50% 并不好。实现这一目标的正确方法是什么?
【问题讨论】: