显示文本左侧的图标

时间:2011-02-11 23:47:21

标签: css

在我们的html中,我们有:

<div id="error2"></div>

这会显示动态错误消息。

在css中我有:

#error2 {
    background:url(../images/cross.png) left center no-repeat;
    color: #ff2217;
    font-size:16px;
    font-weight:bold;
    position:absolute;
    top:175px;
    left:32px;
}

我得到的是:

enter image description here

我想要的是:

enter image description here

2 个答案:

答案 0 :(得分:7)

尝试添加一些填充:

#error2 {
padding-left: 30px;
}

答案 1 :(得分:0)

像这样使用padding-left:;http://jsfiddle.net/8DnTa/