我最近做了一个网站,我没有在我的CSS中添加-moz
和-webkit
。
#mydiv{
position: absolute;
width: 100px;
height: 100px;
border:1px solid #000;
border-radius: 2px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
transition: width 2s;
background: linear-gradient(red, yellow);
}
问题: 可以保持如上所述,或者我需要添加:
background: -webkit-linear-gradient(red, yellow);
background: -o-linear-gradient(red, yellow);
background: -moz-linear-gradient(red, yellow);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-webkit-transition: width 2s;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);