bootstrap 中的 class 是什么意思:text-left-not-xs?
What is the meaning of this class in bootstrap : text-left-not-xs?
bootstrap 中的 class 是什么意思:text-right-not-md?
<label class="control-label text-left-not-xs text-right-not-md">Example</label>
这只是代码中如何使用它的示例。我不确定为什么我们也使用 not-xs
not-md
。
它将 align
所有分辨率的左侧文本,mobile
除外。例如,移动设备上的标题大多数时候 center
从设计角度来看是对齐的。
bootstrap 中的 class 是什么意思:text-right-not-md?
<label class="control-label text-left-not-xs text-right-not-md">Example</label>
这只是代码中如何使用它的示例。我不确定为什么我们也使用 not-xs
not-md
。
它将 align
所有分辨率的左侧文本,mobile
除外。例如,移动设备上的标题大多数时候 center
从设计角度来看是对齐的。