Kyatric@
I think to put every <style> tags into the <header> tag before the <body> is the way to go as far as css formating goes.
I don't know if you already seen it but I wrote a tutorial about customizing the index.html page a while ago and added some more concrete example at the end after popular request.
I hope this can guide you along the way.
I only started this thread after reading your excellent index,html tutorial !
----------------------------------------------------------------------
ranma@
the basics are:
<style type="text/css">
element {attribute: value; attribute2: value;}
otherelement {attribute: value;}
moreelements, somethingelse {attribute: value}
</style>
based on that:
<style type="text/css">
html,body {
margin:0;padding:0;border:0
}
canvas {
border: 1px solid red;
}
body {
background-image: url('iPhone.gif');
background-repeat: no-repeat;
background-attachment: fixed;
background-position:center center;
}
</style>
---------------------------------------------------
I think my brain is finally starting to digest this stuff.
Thanks for the tips.