Issue 1632: background image is showing twice because of padding-top
http://code.google.com/p/chromium/issues/detail?id=1632
Comment #2 by [EMAIL PROTECTED]:
NOTE: Safari 3.1 : Not OK
The issue is caused by the padding-top in the <div> that is currently set
to 157px.
Chrome and Safari adds the top padding of 157px and thus, it fills up the
<div>'s
remaining space with the same background image.
As with Firefox, there's only one image because they have added the style
-moz-box-sizing: border-box;
to automatically calculate the width and the height of the <div>.
border-box means
"The width and height properties include the padding and border, but not
the margin"
as stated in http://developer.mozilla.org/en/CSS/-moz-box-sizing
reduced testcase can be found at: (or see attached files)
http://go/reductions/1632/test_standard.html
no doctype: http://go/reductions/1632/test_quirks.html
Issue attribute updates:
Summary: background image is showing twice because of padding-top
Status: Untriaged
Labels: -Area-Misc Area-Compat Webkit-Specific Has-reduction
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Chromium-bugs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/chromium-bugs?hl=en
-~----------~----~----~----~------~----~------~--~---