5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Gradient has outdated direction syntax. New syntax is like "to left" instead of "right".

Last updated at Posted at 2016-12-29

久々に昔建てたサイトでcssの変更があったので、 gulp でsassコンパイルしてみると下記のエラーが。

[12:15:57] autoprefixer: [PATH] Gradient has outdated direction syntax. New syntax is like "to left" instead of "right".

調べてみると...
https://github.com/postcss/autoprefixer/issues/530

sample.scss
background-image: linear-gradient(top, #aaa 80%, #555);

linear-gradient の書き方が駄目ですよって話でした。
https://www.w3.org/TR/css3-images/#linear-gradients

上記の書き方は下記に修正したら大丈夫でした。

sample.scss
background-image: linear-gradient(to bottom, #aaa 80%, #555);

本番環境だったので焦った😅

5
4
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?