image-slices {
    display: inline-grid;
    position: var(--styler-position, relative);
    background-size: cover;
    
    & > * {
        grid-row: 1;
        grid-column: 1;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: inherit;
    }
}

body[editing] image-slices {
    position: var(--styler-position, relative);
    &::part(img) {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: inherit;
    }
}