I have a menu bar, and I am trying to attach two images to it
This is what I did-
background:url('images/bgs/bg_container_top_left.png') no-repeat top left ,url('images/bgs/bg_container_top_center.png') no-repeat top right;
How can I assign different properties to different images attached here?
Like if I want to give margin to first image
margin-left:-10px;
and to second image
margin-left:-5px;
if you want to position the images than change theses propertites
example:
or use
background-position: 0px 0px 0px 10px;.