CSS 2.1 errors: not a known property name

前端 未结 5 1530
逝去的感伤
逝去的感伤 2021-02-04 10:39

Here is my code, I got it from an AJAX sample:

body, div, p, h1, h2, h3, h4, ul, li, table
{
    margin:0;
    padding:0;
    border:none;
}

body
{
    backgrou         


        
5条回答
  •  情歌与酒
    2021-02-04 10:42

    You need to validate this as CSS3

    http://jigsaw.w3.org/css-validator/#validate_by_input+with_options

    When you do that, you will two errors for your opacity styles and a bunch of warnings dealing with duplicated background-colors.

提交回复
热议问题