プログラミング逆引き辞典

~ 多言語対応のプログラミングレシピ ~

CSS スタイルの強制適用

■基本構文

<スタイル>!important;

 
 

【使用例】

a {
    text-decoration: none!important;
}