ConvertValues

長さ、時間、角度の同等値変換します。デフォルトでは、長さの値は変換されません。

入力

.box {
    transition: color 500ms ease;
}

出力

.box {
    transition: color .5s ease;
}