Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究 CSS3,但此代码出现错误:
-webkit-transform: translate3d(0,0,0) !important;
错误是该属性 translate3d(0,0,0)无效-webkit-transform
translate3d(0,0,0)
-webkit-transform
尝试:
-webkit-transform: translate3d(0,0,0);/* without !important */