現象
- Bootstrap3系で
<span class="badge badge-success">hoge</span>
としても色がつかなかった
原因
- 3系からは
default
以外の色は廃止された - 参考: http://matome.naver.jp/odai/2137510540117012201
対策
-
label
で代用 - 自分で定義
.badge-red{
background-color: red;
}
Go to list of users who liked
More than 5 years have passed since last update.
<span class="badge badge-success">hoge</span>
としても色がつかなかったdefault
以外の色は廃止されたlabel
で代用.badge-red{
background-color: red;
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked