theazureshadow
theazureshadow

Reputation: 10059

List of CSS vendor prefixes?

Besides the following list, are there other CSS vendor prefixes that are used for web development? Are my definitions correct? Should I be more specific about mobile browsers (mobile Webkit, e.g.)

Upvotes: 70

Views: 54438

Answers (2)

Greg
Greg

Reputation: 33650

These are the ones I'm aware of:

  • -ms- Microsoft
  • mso- Microsoft Office
  • -moz- Mozilla Foundation (Gecko-based browsers)
  • -o-, -xv- Opera Software
  • -atsc- Advanced Television Standards Committee
  • -wap- The WAP Forum
  • -webkit- Safari, Chrome (and other WebKit-based browsers)
  • -khtml-, -konq- Konqueror browser
  • -apple- Webkit supports properties using the -apple- prefixes as well
  • prince- YesLogic
  • -ah- Antenna House
  • -hp- Hewlett Packard
  • -ro- Real Objects
  • -rim- Research In Motion
  • -tc- Tall Components

These are officially listed in the CSS 2.1 Specification, informative section 4.1.2.2.

Upvotes: 104

glglgl
glglgl

Reputation: 91119

While not in the direct context of web development, JavaFX uses a vendor prefix for its use of CSS as well: -fx-.

Upvotes: 1

Related Questions