0

我有以下代码:我还想在该框的右侧添加一个图像。我会使用background-image? 有问题的图像是一个关闭图标。

CSS:

.scheduledCenter .alertMessage{
    width:100%;
    height:15px;
    color:#3385B2;
    background-color:#D1DEE8;
    border:3px solid #8099B4;
    border-radius:3px;
    padding:5px;
}
4

1 回答 1

1

你可以加:

background: #D1DEE8 url('../images/icon.png') no-repeat 100% 0;

您将获得图标和背景颜色。

于 2012-05-28T22:15:39.760 回答