Не могу расположить второе фоновое изображение - PullRequest
0 голосов
/ 12 июня 2018

Trouble positioning second background image

body {
margin: 0;
padding: 0;
color: #666464;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 12px;
line-height: 1.4em; 

background-image: url( ../images/862a8380ba6984de1235023a8eef20e7.png), url(../images/green-heart-tree-PNG-thumb20.png);
background-position: top bottom, right top; 
background-repeat: no-repeat, no-repeat;

}

Почему-то я вообще не могу расположить зеленое сердце, почему?Я не понимаюСпасибо за вашу помощь, ребята.

1 Ответ

0 голосов
/ 12 июня 2018

Вы указали позицию для вашего первого изображения, равную top и bottom, что портит ее.

body {
    margin: 0;
    padding: 0;
    color: #666464;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 12px;
    line-height: 1.4em; 

    background-image: url( ../images/862a8380ba6984de1235023a8eef20e7.png), url(../images/green-heart-tree-PNG-thumb20.png);
    background-position: top left, right top; 
    background-repeat: no-repeat, no-repeat;
}
...