Optizimizing your rails app for the iphone

CSS stylesheet & viewport meta tag

Basically, you want the following in your header tag - this will give you a css stylesheet just for the iphone, and make the scale to 1.

	<%= stylesheet_link_tag 'iphone-app', :media => 'only screen and (max-device-width: 480px)' %>
	

Comments