normalizePositions
background
, background-position
, -webkit-perspective-origin
및 perspective-origin
속성에서 position
값을 정규화합니다.
예제
입력
.box {
background: 30% center / 50% 50%;
}
출력
.box {
background: 30% / 50% 50%;
}
background
, background-position
, -webkit-perspective-origin
및 perspective-origin
속성에서 position
값을 정규화합니다.
.box {
background: 30% center / 50% 50%;
}
.box {
background: 30% / 50% 50%;
}