0

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

                  |   words   |

条表示链接的开始/结束,它实际上并不存在

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

我希望它从左栏开始 13 像素,从右栏开始 13 像素?

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

4

2 回答 2

1

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

<style>
    .biglink {
        margin: 0 13px 0 13px;
        background: url('background.png') no-repeat center center;
    }
</style>
于 2009-10-01T07:11:11.407 回答
0

我相信背景遵循paddingand margincss 样式,因此您可以设置margin-left: 13px;and margin-right: 13px;.

于 2009-10-01T06:54:10.740 回答