この警告は簡単なはずですが、何が悪いのか理解できません。
W3CValidatorからの正確な警告メッセージは次のとおりです。You have no color set (or color is set to transparent) but you have set a background-color. Make sure that cascading of colors keeps the text reasonably legible.
これは、警告が発生するcssです。
body {
background-image: url('./img/bg1.jpg');
background-position: center top;
background-repeat: no-repeat;
color: #ffffff;
background-color: #007e29; /* <-- This is the line where the warning occurs */
}
W3C Docuといくつかのグーグル検索によると、それぞれにこの要素の属性background-color
がなければならないことは明らかです。color
しかし、これは私がしていることですか?color
属性は白に設定されbackground-color
、は濃い緑に設定されます。
では、上記のCSSの何が問題になっていますか?私はここで何かが欠けていると確信しています...よろしくお願いします!