Custom banner system

0

Personally, I need to create a custom Banner system. Let me explain a little. I need to create something that: I send a photo, put this photo inside a frame, and in that generate another photo where I can save the two joined, as if it were an assembly. Only this in web. Example: link

    
asked by anonymous 17.06.2018 / 00:55

1 answer

0

Well with css you can create a class for image that lies behind and inside it you place:

.exemploClass{
 z-index: 0;
 background-image:imagem.png;
}

and the image that will be on top:

.exemploClass2{
 z-index: 1;
 background-image:imagem2.png;
}

But I do not know how you can save that image.

    
18.06.2018 / 16:59