Posts Tagged ‘browsers’

CSS Box shadow overview page

Check out thany.nl/apps/boxshadows to see a nice overview of different possibilities to make a shadow and how it is displayed in the different browsers.

Detecting retarded browsers using Ruby on Rails

Here is a small code snippet to check for retarded browsers in Ruby on Rails: user_agent = request.user_agent unless user_agent[/msie/i].nil? session[:browser] = ‘retarded’ else session[:browser] = ‘normal’ end