Is it possible? Is there any way to add transparency to images in CSS/jQuery, like this picture, so I mean if I put on tag background image, I need it to be transparent from left to right and viceversa. *background is transparent
I want to create something similar to the image below:
// HTML
<div id="main"></div>
//CSS
#main {
background-image: url('IMAGE.png'), url('PAGINATION.png');
background-position: left, right;
background-repeat: no-repeat;
}
Does anybody know how to do this? Hope you can understand the question. Thank you in advance.