A dynamic error message is displayed. In css i: #error2 ...">

Display icon to the left of text

In our html we have:

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

A dynamic error message is displayed.

In css i:

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

I get:

enter image description here

I want to:

enter image description here

+3
source share
2 answers

Try adding some add-ons:

#error2 {
padding-left: 30px;
}
+7
source

Use padding-left:;as follows: http://jsfiddle.net/8DnTa/

0
source

Source: https://habr.com/ru/post/1791610/


All Articles