[css-d] what should go in html{ } ?

2013-06-26 Thread COM
my css all begin like what's pasted below. I have no idea what things ought to be inside the html selector. Any thoughts on what the best practices are? Thank you! John *{ margin:0; padding:0; } html{ } body{ font-size:16px; color:rgb(0,0,0);

Re: [css-d] what should go in html{ } ?

2013-06-26 Thread Tom Livingston
On Wed, Jun 26, 2013 at 5:29 PM, COM j...@coffeeonmars.com wrote: my css all begin like what's pasted below. I have no idea what things ought to be inside the html selector. Any thoughts on what the best practices are? Thank you! John *{ margin:0; padding:0; } html{

Re: [css-d] what should go in html{ } ?

2013-06-26 Thread Chris Rockwell
They resets mentioned are common but you don't have to include the declaration if it doesn't help you. On Jun 26, 2013 5:29 PM, COM j...@coffeeonmars.com wrote: my css all begin like what's pasted below. I have no idea what things ought to be inside the html selector. Any thoughts on what the

Re: [css-d] what should go in html{ } ?

2013-06-26 Thread Ben Henick
On 6/26/13 4:29 PM, COM wrote: my css all begin like what's pasted below. I have no idea what things ought to be inside the html selector. Any thoughts on what the best practices are? IIRC... html { padding: 0; } exclusively yields the same result in Presto (Opera, for now) that body {

Re: [css-d] what should go in html{ } ?

2013-06-26 Thread Skye Estes
John, If you'd like to try a pre-made reset/template instead of starting from scratch, there are several fantastic options to be found at http://www.initializr.com Aside from the CSS resets, they can include media queries, js snippets, and other useful code to make your development easier.

Re: [css-d] what should go in html{ } ?

2013-06-26 Thread Jukka K. Korpela
2013-06-27 0:29, COM wrote: my css all begin like what's pasted below. A somewhat odd piece of a stylesheet, but let's fovus on this pary: I have no idea what things ought to be inside the html selector. The html element consists of the head element and the body element, and head