Material Design for Bootstrap 3 by fezvrasta
Material design for Bootstrap 3 by stas-melnikov
Set height for iFrame using jquery
$(document).ready(function () {
var height = $(window.frameElement).height(); // Calculate the window height
var minheight = $(window.frameElement).height(); // Calculate the window min-height
$(window.top.document).find('iframe').css("height", (height - 20) + "px"); // Calculated window height - header height + footer height + padding + margin , then you will get the remaining height...
How to Detect Mobile Devices using jQuery
you can use this minified jQuery snippet to detect if your user is viewing using a mobile device. If you need to test for a specific device I’ve included a collection of JavaScript snippets below which can be used to detect various mobile handheld devices such as iPad, iPhone, iPod, iDevice, Andriod, Blackberry, WebOs and Windows Phone.
/**
* jQuery.browser.mobile (http://detectmobilebrowser.com/)
*...
Setting view port for responsive site
Place the following meta tag into the tag. Viewport for mobile devices like iPhone and iPad.<!-- view port -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- -->...
CSS Media Queries For Common Devices
/* All Smartphones in portrait and landscape ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* YOUR STYLE GOES HERE */
}
/* All Smartphones in landscape ----------- */
@media only screen
and (min-width : 321px) {
/* YOUR STYLE GOES HERE */
}
/* All Smartphones in portrait ----------- */
@media only screen
and (max-width : 479px)...
Essential css hacks for IE/Win - Quirks
Default paragraphs in this page have yellow background. In any of the following test cases a blue background is set with a special (hack) rule. When the background is blue, the hack is applied.
Note: "All" == IE5+/Win, Op6+, Moz, Saf
IE7 only
* + html .element { margin-bottom: 10px; }
IE6- (and IE7+ quirks) only
/*\*/ * html selector...
Subscribe to:
Posts
(
Atom
)