Skip to content

Releases: postcss/autoprefixer

10.0.2

10 Nov 14:52
@ai ai
10.0.2
Compare
Choose a tag to compare
  • Removed -ms-user-select: all because IE and old Edge don’t support it.
  • Fixed Grid Layout warning.

10.0.1

27 Sep 00:43
@ai ai
10.0.1
Compare
Choose a tag to compare

10.0 “Alis volat propriis”

15 Sep 19:02
@ai ai
10.0.0
Compare
Choose a tag to compare

Coat of arms of Oregon

Autoprefixer 10 is based on top of PostCSS 8 (check Known Issues section before updating).

Node.js 6.x, 8.x, 11.x support was removed.

Now you need to install Autoprefixer by npm install --save-dev autoprefixer postcss. We moved postcss from dependencies to peerDependencies according to new PostCSS plugin guidelines.

9.8.6

30 Jul 20:17
@ai ai
9.8.6
Compare
Choose a tag to compare
  • Fixed env option.

9.8.5

11 Jul 05:44
@ai ai
9.8.5
Compare
Choose a tag to compare
  • Improved Grid Layout warnings (by @Dan503).
  • Fixed align-self and justify-self with display: flex (by @Dan503).

9.8.4

11 Jul 05:43
@ai ai
9.8.4
Compare
Choose a tag to compare
  • Replace color output library.

9.8.3

23 Jun 14:34
@ai ai
9.8.3
Compare
Choose a tag to compare
  • Return old non-LTS Node.js versions to avoid breaking changes.

9.8.2

21 Jun 01:38
@ai ai
9.8.2
Compare
Choose a tag to compare
  • Remove Node.js 13.0-13.7 from supported engines, because of buggy ESM support.

9.8.1

19 Jun 21:24
@ai ai
9.8.1
Compare
Choose a tag to compare

9.8 “Vigilo Confido”

17 May 05:05
@ai ai
9.8.0
Compare
Choose a tag to compare

XCOM coat of arms

Autoprefixer 9.8 brings IE support for :placeholder-shown.

Placeholder Shown

@tkrotoff found that input:placeholder-shown can be emulated with input:-ms-input-placeholder.

input:-ms-input-placeholder {
  box-shadow: 0 0 0 1px blue;
}

input:placeholder-shown {
  box-shadow: 0 0 0 1px blue;
}

Note, that we already had support for ::placeholder. Selector ::placeholder is for the text of the placeholder. :placeholder-shown is for the input, where placeholder text is shown. In ::placeholder you can’t change the border or size of the <input>.