ConvertValues
長さ、時間、角度の同等値変換します。デフォルトでは、長さの値は変換されません。
例
入力
.box {
transition: color 500ms ease;
}
出力
.box {
transition: color .5s ease;
}
長さ、時間、角度の同等値変換します。デフォルトでは、長さの値は変換されません。
.box {
transition: color 500ms ease;
}
.box {
transition: color .5s ease;
}