在元素中显示背景图像时出现css问题

时间:2009-10-01 06:20:14

标签: css background background-image

我遇到了一个问题,我想说要显示链接的背景图片

                  |   words   |

条形是指链接的开始/结束,它实际上并不存在

我希望水平显示背景图片,但不是从栏开始,而是在栏上结束,

我希望它从左侧栏开始13px,距离右侧栏13px?

我知道css中有背景位置,但是我可以要求背景位置为我指定13px吗?

2 个答案:

答案 0 :(得分:1)

以下代码可满足您的需求:

<style>
    .biglink {
        margin: 0 13px 0 13px;
        background: url('background.png') no-repeat center center;
    }
</style>

答案 1 :(得分:0)

我认为背景符合paddingmargin css样式,因此您可以设置margin-left: 13px;margin-right: 13px;