[CSS]セレクタの!importantのサンプル
書式
スタイル !important;
使用例
<style>
#cft{
background-color:SkyBlue !important;
}
</style>
<div id="cft" style="background-color:green;">AAA !importantのスタイルを優先に適用</div>
<style>
#cft{
background-color:SkyBlue !important;
}
</style>
<div id="cft" style="background-color:green;">AAA !importantのスタイルを優先に適用</div>
<style> #cft{ background-color:SkyBlue !important; } </style> <div id="cft" style="background-color:green;">AAA !importantのスタイルを優先に適用</div>