mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
For reasons best known to Microsoft's IE7 team, it appears that "50% 50%" background image on a floated element puts the image in the centre of the viewport, rather than the sane thing of the content block. Sticking it to "top left" fixes it (a 11px by 11px image in an 11px by 11px block, either of the 4 corners and dead centre are technically equivalent)... but question begs why it needed fixing in the first place. @_@ "Standards compliant browser"... right. git-svn-id: file:///svn/phpbb/trunk@7557 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
e25eeadc07
commit
a999240e99
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ a.topictitle:active {
|
||||||
}
|
}
|
||||||
|
|
||||||
a.top {
|
a.top {
|
||||||
background: none no-repeat 50% 50%;
|
background: none no-repeat top left;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
width: {IMG_ICON_BACK_TOP_WIDTH}px;
|
width: {IMG_ICON_BACK_TOP_WIDTH}px;
|
||||||
height: {IMG_ICON_BACK_TOP_HEIGHT}px;
|
height: {IMG_ICON_BACK_TOP_HEIGHT}px;
|
||||||
|
|
Loading…
Add table
Reference in a new issue