This file contains 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
.iframeWrapper { | |
position: relative; | |
padding-bottom: 56.25%; | |
padding-top: 0px; | |
height: 0; | |
} | |
.iframeWrapper iframe { | |
position: absolute; | |
top: 0; |
This file contains 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
/*======== Media Queries for Standard Devices ========*/ | |
/* iPhone 6 Plus in portrait & landscape */ | |
@media only screen | |
and (min-device-width : 414px) | |
and (max-device-width : 736px) { | |
} | |
/* iPhone 6 Plus in landscape */ |
This file contains 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>Input placeholders for IE</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> | |
<script src="placeholder.jquery.js"></script> | |
<script> | |
$(function(){ | |
$(':input[placeholder]').placeholder(); |
This file contains 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
" Make IE Better Compatible " | |
<!--[if IE]> | |
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
====================================================== | |
IE6 Only | |
================== | |
_selector {...} |