0

I want to access the browsers to apply the css. I know how to access Firefox and chrome using -moz- and -webkit-

How can I access safari and internet explorer browsers?

Ravindra S
  • 6,302
  • 12
  • 70
  • 108
user3069004
  • 1
  • 1
  • 1
  • 2
  • First of all, when a developer uses `-moz` and `-webkit`, he is not targeting those specific browsers, they are simply proprietary properties which are not yet accepted by w3c, as far as the answer goes you can read this http://stackoverflow.com/questions/4332117/how-to-write-specific-css-for-mozilla-chrome-and-ie – Mr. Alien Dec 14 '13 at 09:50
  • They're called **vendor prefix** ("vendor" being the company that ships a particular browser, like Mozilla for Firefox or the rendering engine like WebKit for Safari and formerly Chrome) – FelipeAls Dec 14 '13 at 10:07

1 Answers1

0

From site point reference

  • -ms- Microsoft
  • mso- Microsoft Office
  • -moz- Mozilla Foundation (Gecko-based browsers)
  • -o- Opera Software
  • -atsc- Advanced Television Standards Committee
  • -wap- The WAP Forum
  • -webkit- Safari (and other WebKit-based browsers)
  • -khtml- Konqueror browser
Vivek Vikranth
  • 3,265
  • 2
  • 21
  • 34
Barmar
  • 741,623
  • 53
  • 500
  • 612