Howdy weevil
Yep, I've done this before. You can take the canvas out of flow with
position: absolute; or position: fixed;
Next you will need to set position: relative; on your content area and
give it a z-index that's higher than the z-index of the canvas element eg:
Markup:
<body>
<div id="content">
<h1>Page Title</h1>
...etc...
</div>
<canvas></canvas>
</body>
CSS:
#content {
position: relative;
z-index: 2;
margin: 50px;
}
canvas {
width: 500px;
height: 500px;
position: absolute;
z-index: 1;
top: 50%;
left: 50%;
margin: -250px 0 0 -250px;
}
My blog is an example http://www.sanchothefat.com/blog/ - try clicking
and dragging on the background
-Rob