Skip to content

Instantly share code, notes, and snippets.

@blooski
Last active December 23, 2015 21:39
Show Gist options
  • Save blooski/6697959 to your computer and use it in GitHub Desktop.
Save blooski/6697959 to your computer and use it in GitHub Desktop.
Browser Engines - specific CSS for a specific engine
/*
IE
Engine: Trident
CSS-prefix: -msie
Firefox
Engine: Gecko
CSS-prefix: -moz
Opera
Engine: Presto
CSS-prefix: -o
Safari & Chrome
Engine: WebKit
CSS-prefix: -webkit
Example: */
#some_div /* rounded corner */
{
border-radius:5px;
-webkit-border-radius:5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment