Komodo:仅针对Webkit前缀解析“背景图像”的值时出错

时间:2019-01-28 09:40:57

标签: css webkit background-image komodoedit parsing-error

我第一次发布问题,因此很有可能是一个非常愚蠢的问题。我目前正在学习HTML5 / CSS,并在Komodo Edit中编写代码。但是,在以下代码中,编辑器向我显示了“解析'background-image'的值时出错”,但仅针对-webkit前缀。该图片在Chrome中看起来不错。你知道原因可能是什么吗?

<!DOCTYPE html>
<html lang="en-US">
  <head>
    <meta charset="UTF-8">
    <title>gradient.html</title>
    <style type="text/css">
      h1 {
        background-image: linear-gradient(left, red, white);
        background-image: -moz-linear-gradient(left, red, white);
        background-image: -webkit-linear-gradient(left, red, white);
      }
    </style>
  </head>
  <body>
    <h1>Gradient</h1>
    <p>This is a paragraph</p>
  </body>
</html>

0 个答案:

没有答案