【Bootstrap 4】文字顏色和背景顏色
阿新 • • 發佈:2019-01-04
Table of Contents
文字顏色
<p class="text-muted">柔和的文字</p> <p class="text-primary">重要的文字</p> <p class="text-success">執行成功的文字</p> <p class="text-info">代表提示資訊的文字</p> <p class="text-warning">警告文字</p> <p class="text-danger">危險操作文字</p> <p class="text-secondary">副標題</p> <p class="text-dark">深灰色文字</p> <p class="text-light">淺灰色文字</p> <p class="text-white">白色文字</p>
背景顏色
<p class="bg-primary text-white">重要的背景顏色</p> <p class="bg-success text-white">執行成功的背景顏色</p> <p class="bg-info text-white">資訊提示背景顏色</p> <p class="bg-warning text-white">警告背景顏色</p> <p class="bg-danger text-white">危險背景顏色</p> <p class="bg-secondary text-white">副標題背景顏色</p> <p class="bg-dark text-white">深灰背景顏色</p> <p class="bg-light text-dark">淺灰背景顏色</p>