tags:

views:

33

answers:

1

Hi,

I have this page below:

http://www.tirengarfio.com/rs2/web/borrar.php

What should i do to put the link in the first line but on the right of the page?

Regards

Javi

+1  A: 

Use the CSS float property:

<a href="#" style="float: right;">Link</a>
<h1 style="display: inline;">Juan Garcia Granados</h1>
Dolph
Thanks, it works. Anyway I can't find float attribute here:http://www.w3schools.com/tags/tag_a.asp
It's a CSS property, not an HTML attribute. Also, there is a link directly to the CSS float property documentation above.
Dolph