I have a navbar in a div, with several links. The last one is in a <span> because I want it to float to the right by itself. The span does float right, but it shows up below the navbar div. I want it within the div.
Is this doable? Thanks.
Is this doable? Thanks.
Code:
<?php
echo "<p>";
echo '<div id="navbar">
<a href="edit_reg.php">edit</a>
<a href="undelete.php">undelete</a>
<a href="print_reg.php">print</a>
<a href="rep_sum.php">summary</a>
<span style="float: right"><a href="index.php">reg page</a></span>
</div><p>';
?>
Comment