postcss-aspect-ratio-polyfill icon indicating copy to clipboard operation
postcss-aspect-ratio-polyfill copied to clipboard

Polyfill has problems with multiple selector rules

Open Rigo-m opened this issue 3 years ago • 0 comments

This gets polyfilled correctly:

.image-container-1 {
  aspect-ratio: 1 / 1
}
.image-container-2 {
  aspect-ratio: 1 / 1;
}

This does not:

.image-container-1, .image-container-2 {
  aspect-ratio: 1 / 1;
}

Rigo-m avatar Apr 07 '21 15:04 Rigo-m