padding divs with images by css selection

Viewed 110

my html code looks like that

<div class="div1">
    <span class="sp1"></span>
    <span class="sp2"></span>
    <img class="img1" src="sss.png">
    <a class="a1" href="test.aspx">aaaa</a>
    </img>
</div>

the code contains also few more boxes just without the image, does css can padding the boxes which contains an img tag

like in this css

.div1 > img {
    padding: 1px 0px 5px 0 !important;
    margin: 0;
}

but this css padd the image , and i want to padding the div

4 Answers
Related