我正在尝试将书签添加到我的 wop 网站。问题是我想让小书签(在下图中以红色突出显示)居中,就好像它没有箭头伸出侧面一样。如果我更改 css 中 bgimage 的宽度,使其与下面的缩进框相同,它会以我想要的方式居中。但是,它切断了一点箭头。所以,我的问题是,我怎样才能使小书签居中,就好像它具有其他缩进框的宽度一样。
小书签 CSS:
#bookmarklet {
background-image:url('images/bookmarklet.png');
width:425px;
height:175px;
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
padding-bottom:8px;
}
我希望小书签像它一样居中(不切掉箭头的一侧):
#resultbg {
background-image:url('images/resultbg.png');
width:404px;
height:347px;
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
padding-top:8px;
}
任何帮助是极大的赞赏!谢谢(: