Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Yuan Tang
14,168 Pointsresponsive design plugin css -> -webkit- and -moz-
Could someone explain what these two means in the video, -webkit- and -moz- ?
Thanks, Yuan
2 Answers

Domen Stojic
31,376 PointsWhat you are describing is called "vendor prefix"!
There are some CSS properties that some versions of web browsers do not support so you can use a prefix; although you should check for specific browser version you are working with!
There are multiple prefixes: -webkit- SAFARI / CHROME & new OPERA -moz- FIREFOX -ms- INTERNET EXPLORER -o- OPERA / old
For more info: http://www.w3schools.com/cssref/css3_browsersupport.asp

Domen Stojic
31,376 PointsYou bet!
Yuan Tang
14,168 PointsYuan Tang
14,168 PointsThank you very much!