- -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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*, | |
*:before, | |
*:after | |
{ | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// Sublime menu > Preferences > Package Settings > LESS > Settings - User | |
{ | |
"extensions": | |
[ | |
"less.css" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
<link rel="stylesheet" type="text/css" href="http://cdn.webrupee.com/font"> | |
<style> | |
body,html,*{font-family: 'WebRupee';} | |
option,select{ font-family:inherit;} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ul li:nth-last-child(2) { | |
... | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var pixelRatio = (window.devicePixelRatio >= 1.5) ? "HiDPI" : "1X"; | |
if (window.devicePixelRatio) ga('set', 'DevicePixelRatio', pixelRatio, 2); | |
// if (window.devicePixelRatio) _gaq.push(['_setCustomVar', 1, 'DevicePixelRatio', pixelRatio, 2]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var used = []; | |
var elements = null; | |
//get all elements | |
if (typeof document.getElementsByTagName != 'undefined') { | |
elements = document.getElementsByTagName('*'); | |
} | |
if (!elements || !elements.length) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input[type="password"] | |
{ | |
font: large Verdana,sans-serif; | |
letter-spacing: 1px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input[type=search] { | |
-webkit-appearance: none; | |
} | |
input[type="search"]::-webkit-search-decoration, | |
input[type="search"]::-webkit-search-cancel-button | |
{ | |
display: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* http://24ways.org/2013/coding-towards-accessibility/ */ | |
.my-cool-link:hover, | |
.my-cool-link:focus, | |
.my-cool-link:active { | |
background-color: MistyRose ; | |
} |
OlderNewer