Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
style属性はどのセレクターよりも具体的!importantであるため、常にカスケードの最後に適用されます (恐ろしいルールに耐えられません)。CSS をスタイルシートに移動します。
style
!important
a.hover { color: red; text-decoration: none; } a.hover:hover { text-decoration: underline; }
(クラスのより意味のある名前もお勧めします)。