html - Multiple backgrounds -


i'm having problems setting 2 backgrounds 1 page. how it's supposed look:

enter image description here

i've played around css nothing works, because see gray bg.png file:

#kontakt {     background: url(../images/bg.png), url(../images/img_1340.jpg);     background-position: ;       background-repeat: reapeat-x, no-repeat;     } 

is possible divide page 2 intended to? thank much.

if use css:

background: url(../images/bg.png), url(../images/img_1340.jpg); background-position: left top, right top;   background-repeat: repeat-x, no-repeat; } 

the result this:

enter image description here

#kontakt { background: url(../images/img_1340.jpg), url(../images/bg.png); background-position: right top, left top;   background-repeat: no-repeat, repeat; } 

Comments

Popular posts from this blog

how to proxy from https to http with lighttpd -

android - Automated my builds -

python - Flask migration error -