3
2

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.

おまじない(CSS)

Last updated at Posted at 2016-10-03

実務で遭遇したCSS関連の問題・おまじないをメモ。
随時更新(予定)。

##MobileSafari でスクロールすると Fixed要素 が消えたり、一部背景がチラつく
Fixed要素 に対して、下記CSSを追加。

transform: translate3d(0,0,0);

##transform:scale(); を使ってズームするとガタつく
ズームしている要素の1階層上の親要素 に対して、下記CSSを追加。

transform: rotate(0.01deg);
3
2
0

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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?