The only way I could think that the image on the right and bottom using simple CSS is to position it absolutely:
#solutionsNav div.leadgen {
background:url(/images/leadGen_bg2.png) no-repeat;
background-size: 100% 100%;
padding: 10px;
color: #FFF;
cursor: pointer;
position: relative;
}
#solutionsNav div.leadgen img {
padding: 0 5px 10px 10px;
position: absolute;
bottom: 0;
right: 0;
}
I don't know if this supports what you want in the layout.
If the image is purely decorative, you can make it part of the background, and then place it in the background-position on the parent element.
source
share