Hello,
I am using css normalize http://necolas.github.com/normalize.css/ and I am finding that by changing h1 font size is adding a padding. I cannot find where this is specified.
here is what I am trying to use to over-ride but no avail. Any ideas?
There's no default padding applied by browser on H1 but margin is. So the margin will grow or shrink with changing font size. So set margin on H1 to 0 and use shorthand on padding like
Hello, I am using css normalize http://necolas.github.com/normalize.css/ and I am finding that by changing h1 font size is adding a padding. I cannot find where this is specified.
here is what I am trying to use to over-ride but no avail. Any ideas?
here is my global css
There's no default padding applied by browser on H1 but margin is. So the margin will grow or shrink with changing font size. So set margin on H1 to 0 and use shorthand on padding like
ah, that's it. the margin. All is fixed by setting the margin. Interesting...