I've got the following code several times on a page:
<div>
<input class="entry">
</div>
I want to target the div tag through css without creating a class or id. Is this possible?
I tried div.entry { foo }
and .entry div {foo}
neither seemed to work.