Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

  • -khtml- (Konqueror, really old Safari)
  • -moz- (Firefox)
  • -o- (Opera)
  • -ms- (Internet Explorer)
  • -webkit- (Safari, Chrome)

Does this list (which also contains mso-, -wap-, and -atsc-) add anything of value?

share|improve this question

1 Answer

up vote 32 down vote accepted

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- 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
share|improve this answer
Wow, nice list. I haven't thought of Prince in a while! I'm particularly interested in web development, so perhaps we could split the ones (like Prince) that wouldn't be viewed in a web context. In what context is -xv- an opera extension? I hadn't even heard of that one. – theazureshadow Mar 23 '11 at 20:47
6  
I had no idea the Purple One created a browser... – tahdhaze09 Mar 23 '11 at 20:54
nice list! +1 for question and answer – clairesuzy Mar 23 '11 at 22:56
How about -icab? – XP1 Feb 11 '12 at 0:10
When you look in the computed styles in Opera Dragonfly, -xv- appears to be voice related: http://img46.imageshack.us/img46/2715/operadragonflystylevend.png. Also see here for documentation: [stackoverflow.com/questions/6028362/…. – XP1 Feb 14 '12 at 17:27
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.