I´ve got the following images in a div:
<div id="desc_attach_scroll">
<img class="A" src="img/up.png" />
<img class="B" src="img/down.png" />
</div>
At the moment class B image is sitting vertically under class A image. I want to move B to the righthand side of A. I tried to float them but it didn´t work. Any suggestions?
Floats should work just fine…. See this Fiddle
Note.. if you use uppercase characters for class assignments, you must match the case for the stylesheet in most cases.