CSS Validator无法识别CSS指针事件和外观属性

时间:2016-12-31 08:09:25

标签: css w3c css-validator

我是CSS的新手,只是构建了一款应用。问题是,在验证CSS时,我收到以下错误和警告:

Errors

Warnings

有人可以解释一下这些错误和警告的含义以及如何修复它以便CSS可以被验证吗?

尽管存在这些错误,我的应用仍能正常运行。

这是我的CSS代码:

/*----------------------------CSS reset------------------------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*-----------App wrapper-----------*/
#wrapper {
  padding-left: 1em;
  padding-right: 1em;
}

/*-----------App description-----------*/

h1 {
  font-size: 24px;
  font-family: helvetica;
  font-weight: bold;
  text-align: center;
  padding-top: 1em;
  padding-bottom: 1em;
}

p {
  font-size: 16px;
  font-family: helvetica;
  text-align:justify;
  line-height: 1.2;
}
/*-----------Select menu-----------*/

#input {
  padding-top: 1em;
  padding-bottom: 1em;
}

#search_button, label select {
  padding: 10px 10px 10px 10px;
    background: #f8f8f8;
    color: #444;
    border: 1px solid black;
    border-radius: 0;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
  font-family: helvetica;
  font-size: 13px;
}

#search_button, label select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #444;
}

#search_button, label select::-ms-expand {
    display: none;
}

label:before {
    content: '';
    right: 5px;
    top: -7px;
    width: 30px;
    height: 33px;
    background: #f8f8f8;
    position: absolute;
    pointer-events: none;
    display: block;
}

label { position: relative; }

label:after {
    content: '>';
    font: 16px helvetica, monospace;
    color: #444;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 2px;
    top: -3px;
    border-bottom: 1px solid #aaa;
    position: absolute;
    pointer-events: none;
    width: 35px;
    padding: 0 0 5px 0;
    text-indent: 14px;
}

/*-----------Crest, Name-----------*/
#output {
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display:flex;
  max-height: 70px;
}

#crest {
  max-height: 70px;
  max-width: 70px;
}

img {
  max-height: 100%;
  float: left;
}

#team-name {
  width: 100%;
}

h2 {
  font-size: 17px;
  font-family: helvetica;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 70px;
}

/*-----------Geochart container-----------*/


/*-----------Pie chart container-----------*/
  #pie-container {
      display: block;
  }
/*----------------------------Tablet responsive----------------------------*/
@media all and (min-width: 700px) {



  /*-----------App decription-----------*/
  h1 {
    font-size: 50px;
  }

  p {
    font-size: 16px;
  }

  /*-----------Crest, Name-----------*/
  #output {
    max-height: 120px;
  }

  #crest {
    max-height: 120px;
    max-width: 120px;
  }


  h2 {
    font-size: 38px;
    line-height: 120px;
  }
}
/*----------------------------Desktop responsive----------------------------*/

@media all and (min-width: 900px) {

  /*-----------App wrapper-----------*/
  #wrapper {
    padding-left: 5em;
    padding-right: 5em;
  }

  /*-----------App decription-----------*/

  h1 {
    font-size: 60px;
  }

  p {
    font-size: 18px;

  }

  /*-----------Crest, Name-----------*/
  #output {
    max-height: 160px;
  }

  #crest {
    max-height: 160px;
    max-width: 160px;
  }


  h2 {
    font-size: 40px;
    line-height: 160px;
  }

  /*-----------Pie chart container-----------*/
    #pie-container {
      display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
      display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
      display: -ms-flexbox;      /* TWEENER - IE 10 */
      display: -webkit-flex;     /* NEW - Chrome */
      display:flex;
    }
    #countryPie {
        flex: 1;
    }
    #playerPie {
        flex: 1;
    }
}

感谢您的帮助!

1 个答案:

答案 0 :(得分:14)

TL; DR :更多地关注caniuse.com中的数据,它告诉您实际上在做什么浏览器,而不是W3C验证器,它需要属性和值来实现高被列入之前的官方地位。您经常会找到太新或未开发的属性和值以包含在验证器中,但仍然受到主要浏览器的支持。

来自CSS工作组档案:

  

我刚用css验证器检查了我的页面 redseen.3owl.com

     

我收到了这个错误:

     

属性指针 - 事件不存在:无

     

为什么显示为错误?

     

因为当前没有CSS规范定义指针事件   属性。它在SVG 1.1中定义,但是使用了指针事件   非SVG元素的CSS是实验性的。该功能曾经是其中的一部分   CSS3 UI草案规范,但由于许多未解决的问题,已有   被推迟到CSS4。

     

W3C CSS Validator通常在CSS3模式下检查模糊   文档集合,包括CSS 2.1和选择" CSS3   规范",不包括仍在工作草案级别的许多    - 即使在WD级别(或者甚至在编辑的草稿中,我可以看到)当前也没有定义指针事件。

     

http://lists.w3.org/Archives/Public/www-validator-css/2012Nov/0033.html

以上摘录自2012年起。但2017年仍然有效。

来自MDN pointer-events

  

[pointer-events] HTML元素的扩展,虽然存在于CSS的早期草稿中   基本用户界面模块3级已被推到4级。

CSS appearance属性似乎处于相同的情况(MDN)。它目前处于编辑草稿状态,因此未包含在CSS验证程序中。

附注

在我开发的所有网站中,验证HTML总比CSS更容易。事实上,虽然大部分时间我都可以实现完整的HTML验证,但我并不认为我已经实现了完整的CSS验证。

这是因为我使用大多数浏览器支持的属性,但在标准化过程中并不总是处于验证器阈值状态。

出于这个原因,我不会将CSS验证器用于除一般信息之外的任何其他内容。我建议你不要让CSS验证错误阻止你前进。

更多关注caniuse.com网站,以检查浏览器对CSS属性的支持。您会发现pointer-events属性尽管不属于当前的CSS规范,但大多数主流浏览器都支持该属性。

相关问题