frankpf / gridless-boilerplate

Gridless is an awesome HTML5 and CSS3 boilerplate for making responsive, cross-browser websites with beautiful typography
http://frankpf.github.com/gridless-boilerplate/
The Unlicense
840 stars 99 forks source link

main.css issues #4

Closed necolas closed 13 years ago

necolas commented 13 years ago
frankpf commented 13 years ago

Everything fixed, except the background: none. I did leave it there to remember people they can change it directly on the html instead of adding a wrapper (even though I added a link, I think many won't check it and will still use an wrapper). Do you think I should add a comment explaining this?

necolas commented 13 years ago

Yeah, I think removing the unnecessary CSS and including a comment about adding backgrounds to html would be a good idea.

frankpf commented 13 years ago

Done!

necolas commented 13 years ago

Noticed you're missing the zeroing out of margins on fieldset, and the inclusion of border:0 on legend to make it inherit color in IE

frankpf commented 13 years ago

Fieldset margins are already 'fixed' in this rule:

p, blockquote, q, pre, address, hr, code, samp, dl, ol, ul, form, table, fieldset, menu, h4, h5, h6, img, figure, figcaption, button, hr {
    margin: 0 0 1.625em;
}

border:0 on legend was fixed.

Thank you!