Return to Snippet

Revision: 18751
at October 7, 2009 12:21 by johnloy


Initial Code
h1 {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
h1 span { display: none; }
 
/* Portrait */
@media screen and (max-width: 320px)
{
	h1 span:nth-child(1) { display: inline; }
}
 
/* Landscape */
@media screen and (min-width: 321px)
{
	h1 span:nth-child(2) { display: inline; }
}

Initial URL


Initial Description


Initial Title
css media queries for determining iphone orientation

Initial Tags
css, textmate, mobile, CSS3, iphone

Initial Language
Other