출처 : https://css3gen.com/css3-webkit/
📌webkit 엔진을 사용하지 않는 브라우저
div { width: 100px; height: 100px; background: green; /*Start transition effect*/ transition-property: width; transition-duration: 2s; }
div:hover { width: 300px; }
css3 코드
📌webkit 엔진을 사용하지 않는 브라우저
-webkit-code는 다른 웹 브라우저에 의해서 무시된다
-webkit-transition-property: width; -webkit-transition-duration: 2s;
The -webkit-overflow-scrolling CSS property controls whether or not touch devices use momentum-based scrolling for a given element.
auto
: regular scrolling
: content immediately ceases to scroll when you remove your finger from the touchscreen
touch
: momentum-based scrolling, where the content continues to scroll for a while after finishing the scroll gestrue and removing your finger from the touchscreen. the speed and durationof the continued scrolling is proportional to how vigorous the scroll gesture was.
controls the display of the default callout shown when you touch and hold a touch target.