Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First off, I know there are ways to make it so that text can be on the same line. But I am not sure how to extend on this. This is what I have so far:

Should be all the way across

How would I be able to make it so it goes all the way across without using tables?

This is the HTML portion:

<p style="float: left;" class="details"><a href="#Top">To Top</a></p>
<p style="float: right" class="details">Latest Version:  0.3.6.17 | Downloads: 12 | <a href="#">Download</a></p>

This is the CSS portion:

.details {
padding: 7px 15px;
margin: 20px 15px 15px 15px;
background: #111111;	
}

I would really hate to have to resort to tables for this. Is there an easier way. Thank you anyone who can help me.

share|improve this question
3  
What should go all the way across? It seems as though 'To Top' and the other details section are already on the same "line" that spans the width of the page. Aside from your margin / padding of the elements. – opello Oct 28 '09 at 20:05
I mean the gray background. – Nate Shoffner Oct 28 '09 at 20:13

3 Answers

up vote 10 down vote accepted

This diverges a bit from what you started with, but has been how I've done this in the past:

CSS:

.details {
  clear: both;
  padding: 7px 15px;
  margin: 20px 15px 15px 15px;
  background: #111111;
  text-align: right;
}

.toplink {
  float: left;
}

HTML:

<div class="details">
  <span class="toplink">To Top</span>
  Latest Version:  0.3.6.17 | Downloads: 12 | Download
</div>
share|improve this answer
Thank you so much!! That works perfectly! And I'm sorry for not stating it from the beginning. I'm about to fall asleep any minute and I just wanted to get this done and over with haha. Thank you so very much. – Nate Shoffner Oct 28 '09 at 20:32

Add display:inline; to your .details class and make sure the containing div is a block element and its background is set to gray.

Sinan.

share|improve this answer

I did it this way:

<style type="text/css">
#right {
    float: right;
}

.details {
    margin: 0 auto;
    line-height: 0;
}
</style>

<p class="details"><a href="#Top">To Top</a></p>
<p id="right" class="details">Latest Version:  0.3.6.17 | Downloads: 12 | <a href="#">Download</a></p>

The tricky part is that you have to zero out the top and bottom margins for both AND the line-height. If you do this, then floating right on the bottom element lines up.

share|improve this answer
Didn't work for me.. – Nate Shoffner Oct 28 '09 at 20:26
How did it not work? – Anthony Oct 28 '09 at 20:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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