実務で遭遇したCSS関連の問題・おまじないをメモ。
随時更新(予定)。
##MobileSafari でスクロールすると Fixed要素 が消えたり、一部背景がチラつく
Fixed要素
に対して、下記CSSを追加。
transform: translate3d(0,0,0);
##transform:scale(); を使ってズームするとガタつく
ズームしている要素の1階層上の親要素
に対して、下記CSSを追加。
transform: rotate(0.01deg);
Go to list of users who liked
More than 5 years have passed since last update.
実務で遭遇したCSS関連の問題・おまじないをメモ。
随時更新(予定)。
##MobileSafari でスクロールすると Fixed要素 が消えたり、一部背景がチラつく
Fixed要素
に対して、下記CSSを追加。
transform: translate3d(0,0,0);
##transform:scale(); を使ってズームするとガタつく
ズームしている要素の1階層上の親要素
に対して、下記CSSを追加。
transform: rotate(0.01deg);
Register as a new user and use Qiita more conveniently
Go to list of users who liked