View Single Post
  #4 (permalink)  
Old Apr 2nd, 2007, 14:10
AdRock's Avatar
AdRock AdRock is offline
SuperMember

SuperMember
Join Date: Jul 2006
Location: Devon, England
Posts: 565
Thanks: 0
Thanked 0 Times in 0 Posts
Re: How to float 2 image hyperlinks on same line

Like this

Code: Select all
 
<div id="page">
    <a href="jars.htm"><img class="left" src="../images/prev1.png" alt="Previous" /></a>
    <span class="right"><a href="coffin.htm"><img src="../images/next1.png" alt="Next" /></a></span>
 </div>
Code: Select all
 
.left {
   float: left;
}
.right {
   float: right;
}
Reply With Quote