Struggling with applying different styles to two image tags within one div tag? I attempted to use CSS to target the images individually, but it didn't work. Can someone help me correct my CSS code?
This is how I tried to apply the CSS:
div img { padding-right: 2px; vertical-align: middle; }
div img img { width: 16px; height: 16px; }
<div>
<img src="..." alt="" />
<img src="..." alt="" />
</div>