Logo
  Sunday, May 20, 2012
Sign-In  |  Sign-Up  |  Contact Us  | Bookmark |  RSS Feed

HTML5 Tutorial FeedBurner

HTML5 canvas browser compatibility   
HTML5 is not official and mandated version of HTML and not every browser vendor supports it. You need to be aware of your users and how many of them using browser that supports HTML5. Here is a break down and browsers currently supporting HTML5 and you need to be aware.
  • Chrome – version 1 and up
  • Firefox – version 1.5 and up
  • Internet Explorer – version 9 and up
  • Opera - version 9 and up
  • Safari – version 1.3 and up
In case browser you are running your application on does not support HTML5 you can always fallback on the

<canvas> Change your browser version to support HTML5. </canvas>

Canvas is somewhat limited in terms of alternatives for items residing inside canvas. For example, broken images cannot have alt tag as in regular img tag. While designing your canvas you have to be aware of this issues.
Print HTML5 canvas browser compatibility  Bookmark HTML5 canvas browser compatibility

Related Articles  
HTML5 Fill Styles
HTML5 canvas allows you to fill paths and subpaths. The Fill Styles are used for this purpose and you can do it with ...
How to insert Images into a canvas in HTML5?
HTML5 allows adding and manipulating images inside a canvas. Images can be modified, stretched and stamped with the ...
Creating Shadow Effect with HTML5
HTML5 shadows are controlled by several operations available in HTML5 arsenal of operations. The shadow effect can be ...
HTML5 canvas transformation
Canvas transformation is generally used to set up comprehensive canvas. It can be overkill if you want to create simple ...
HTML5 Gradient
Applying HTML5 gradient requires three steps to be completed. Creation of the gradient object, applying colors and call ...
HTML5 Scaling Canvas
We can always scale object on canvas with the help of context.scale transformation routine. In order to scale an ...
More