I am using the W3 CSS validator and when trying to validate my code it finds these errors:
121 thead Value Error : background-color #e422357a is not a background-color value : #e422357a
125 tbody Value Error : background-color #1515157a is not a background-color value : #1515157a
129 tfoot Value Error : background-color #e8b63d7a is not a background-color value : #e8b63d7a
This is the code in question. This is for a school assignment and my professor told me it's important that I validate my code, but I can't seem to figure out what is wrong with it?
Aren't 8 digit hex colors valid background colors?
thead {
background-color: #e422357a;
}
tbody {
background-color: #1515157a;
}
tfoot {
background-color: #e8b63d7a;
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…