我想在开关按钮的左侧和右侧制作一个文本,如下图所示。如何解决这个问题呢?
代码
<div class="m-form__group form-group row">
<label class="col-4 col-form-label">Switch yes/no</label>
<div class="col-8">
<span class="m-switch m-switch--outline m-switch--icon m-switch--success">
<label>
<input type="checkbox" checked="checked" name="">
<span></span>
<small>On</small>
</label>
</span>
</div>
</div>