vote up 2 vote down star

Hi - This is a challenge for the css gurus out there. I want to show 2 links on my page, on the same "line", one on the left, one on the right.

The code below works perfectly well in terms of visual presentation, but I'm aware that tables to format a page are not the done thing. Can anyone tell me what the "approved" markup for this should be? I am guessing that this is really simple but I keep mashing up the rest of my page when I try, and keep reverting to the table because it takes seconds to write and does the job, I'm just keen to understand how I should do it.

(I have a element holding the page header / nav above it, and another holding a form directly below it.)

<table width=95%>
	<tr>
     <td>
	  <a href="<? echo $url1 ?>">Back to List of Pages	</a>
	 </td>
	 <td align="right">
	  <a href="<? echo $url2 ?>">View this page</a>
	 </td>
    </tr>
</table>


edit - answer found!

OK, I have tested out both Akrikos' and Magnar's answers, and Magnars seems to work best in my situation. I found with Akrikos' method I id need to put a clear:both element underneath to prevent it merging with the div below. also, it was easy to wrap Magnar's in a

element so the links match the rest of my page, which provided the necessary space between the links and the div below - I needed to put some other spacer in there with Akrikos' method. Thanks to everyone for your help with this though - I've learned a lot in the last 40 minutes!

flag

50% accept rate
I understand about going back to what you know... sometimes it's more about giving value to your users on time than worrying about anything other than getting it working. Thanks for taking the time to learn how it should be done! – Akrikos Feb 17 at 14:35

6 Answers

vote up 4 vote down check

You can avoid the heavy markup by leveraging the fact that both links are oneliners. With this markup:

<div id="navigation"></div>    

<a id="view" href="...">View this page</a>
<a id="back" href="...">Back to List of Pages</a>

<form></form>

And this simple css:

#view {
    float: right;
}

No clearing necessary, and no need to specify widths.

This solution would only work for this scenario: two links. If you need more, then you should look at a set of floating list items.

link|flag
I like this except that you force him to reverse the order of his links in the html. I'd rather not force him to change the order of his tags on the page so that the css works. – Akrikos Feb 17 at 14:21
Yes, that is an unfortunate sideeffect. It's a trade-off I am willing to make in order to avoid "divitis" and simplify the markup and css, but your mileage may vary. :-) – Magnar Feb 17 at 14:24
Indeed. I like how elegent it is... but if you add a float:left to the other link, then no matter which order you write them they display correctly. – Akrikos Feb 17 at 14:32
Adding float:left to the other link means you will need a clear. You would also probably encounter problems in IE6 unless you specify a width. – Magnar Feb 17 at 14:35
Your example still got an upvote from me tho :) It's a lot better than the other one at the top there. – Magnar Feb 17 at 14:38
show 3 more comments
vote up 1 vote down
<div style="width: 95%">
  <div style="float: left;">Link 1</div>
  <div style="float: right;">Link 2</div>
</div>
link|flag
This is much better. However I'm not sure if it gets the height it needs, it can be left with height:0px. A clear:both would be required if that is the case. – Jens Jansson Feb 17 at 14:04
Yeah. The parent div has 0px height. clear:both; after second div or making the parent div float: left; should work. – Lennart Feb 17 at 14:11
Inline styles and too many divs is not the "correct" way to do it. – Magnar Feb 17 at 14:22
I believe the inline styles are simply for demonstration purposes. – Mark Hurd Feb 17 at 14:24
It would be more helpful to demonstrate proper development practices when a person new to css asks for help. – Magnar Feb 17 at 14:24
show 5 more comments
vote up 0 vote down

You mean that?

 <html>
  <head>
    <style>
      div.fl {
        float: left;
      }
      div.fr {
        float: right;
        text-align: right;
      }
    </style>
  </head>
  <body>
    <div class="fl">
      A
    </div>
    <div class="fr">
      B
    </div>
  </body>
</html>

replace A and B

link|flag
vote up 0 vote down

I think the best way to do any layout nowadays, is to use Grids. Once you get the hang of using grid layouts, you will never look back.

A good way to get started is to use Blueprint CSS. Its a nice framework to help you design a grid based layout.

link|flag
You didn't actually help the poster with this answer... this comes off as more of an advertisement than anything else. – Akrikos Feb 17 at 14:28
Thanks for the feedback. – Jon Feb 17 at 14:38
Thanks for the answer anyway Jon - I may check out blueprint at some point, cos it might be a longer term answer. Best to put the link though if you can: blueprintcss.org I dont have enough rep to edit your post I dont think! – Rob Y Feb 17 at 14:41
vote up 0 vote down

This way you can adjust the column width, I've done it this way for quite some time now. I figured this out by studying Wikipedia HTML and CSS. Column B will occupy the remaining width but stay confined within the width of #outer-wrapper.

<div id="outer-wrapper">
<div style="float: left; width: 200px;">
    Column A
</div>
<div style="margin-left: 210px;">
    Column B
</div>
<div style="clear: both;"></div>
</div>

You can nest these are have a clear maintainable column based layout.

link|flag
vote up 2 vote down

Instead of getting too 'div happy', I'd rather put ids on the anchor tags and apply styles to them directly. You may need to put a tag with 'clear: both;' after the links to clear the floats... I leave figuring that out that as an exercise for the reader.

<html>
<head>
<title>Test Page</title>
<style type="text/css">
#viewpage {
  float:right;
  margin-right:5%;
}
#listpages {
  float:left; 
}
</style>
</head>
<body>

  <a id='listpages' href="<? echo $url1 ?>">Back to List of Pages</a>
  <a id='viewpage' href="<? echo $url2 ?>">View this page</a>

</body>
</html>

The idea behind using CSS 'correctly' in this case is to make your html describe your content in a way that makes sense and then use CSS to change how the content is displayed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.