tags:

views:

97

answers:

1

what is the getCSSCanvasContext() method. i sow it in chrome debuging console, but cannont find any decent documentation for it. does it mean we can draw using canvas commands on any element?

+1  A: 

The method is implemented in WebKit (meaning you can also use it in Safari) and returns an object that lets you draw into a CSS image. See this blog post for an example.

byoogle