-4

I am creating a webpage in which there is an image on the extreme left when the browser is maximized but as soon as the browser gets minimized i want the image to move to extreme right .. How to do that ? I tried float but it's not working..

  • .prof { position : absolute; top : 210px; left : 200px; } .prof > img { float :left; @media (min-width : 800px) { img { float : right; } } } – Appenstien Official Aug 21 '14 at 11:32
  • It's the CSS @sven rojek – Appenstien Official Aug 21 '14 at 11:32