I've used Blueprint to prototype a very simple page layout...but after reading up on absolute vs. relative positioning and a number of online tutorials regarding vertical positioning, I'm not able to get things working the way I think they should.

Here's my html:

<div class="container" id="header">
  <div class="span-4" id="logo">
    <img src="logo.png" width="150" height="194" />
  </div>
  <div class="span-20 last" id="title">
    <h1 class="big">TITLE</h1>
  </div>
</div>

The document does include the blueprint screen.css file.

I want TITLE aligned with the bottom of the logo, which in practical terms means the bottom of #header.

This was my first try:

  #header {
    position: relative;
  }

  #title {
    font-size: 36pt;
    position: absolute;
    bottom: 0;
  }

Not unexpectedly, in retrospect, this puts TITLE flush left with the left edge of #header...but it failed to affect the vertical positioning of the title. So I got exactly the opposite of what I was looking for.

So I tried this:

  #title {
    position: relative;
  }

  #title h1 {
    font-size: 36pt;
    position: absolute;
    bottom: 0;
  }

My theory was that this would allign the h1 element with the bottom of the containing div element...but instead it made TITLE disappear, completely. I guess this means that it's rendering off the visible screen somewhere.

At this point I'm baffled. I'm hoping someone here can point me in the right direction. Thanks!

link|improve this question

69% accept rate
Try it without the malformed HTML - replace <div class="container" id="header> with <div class="container" id="header"> – danlefree Mar 16 '11 at 4:03
That was just on my part entering the question here. The actual file does not have this problem. If you've actually been able to make this work as intended that would be awesome...let me know. – larsks Mar 17 '11 at 0:43
feedback

migrated from webmasters.stackexchange.com Mar 16 '11 at 4:44

This question came from our site for pro webmasters.

2 Answers

up vote 1 down vote accepted

don't go changing positioning or floating of the blueprint classes. That will mess up the framework.

What you are trying to do is going to be difficult, because what you are trying to do (I assume) is align the baseline of the type with the bottom of the image. There is no easy way to determine the baseline of type via CSS. So getting them aligned is going to be entirely dependent on the particular font that loads for your user. If your image is 50px high, you could start by setting the line height of your h1 to 50px and then tweak from there. But understand that there will be variance from browser to browser, font to font.

You're probably better off making your headline part of the image then use some image replacement techniques to hide the text.

link|improve this answer
Thanks, you said it exactly: I want to align the baseline of the title with the bottom of the image...or at least, with the bottom of the containing <div>. I'm not sure I understand what you're suggesting in your last sentence re: image replacement techniques; can you point me at an example? Thanks! – larsks Mar 18 '11 at 2:03
I'd set your headline type as part of the image. You can then just use it as-is with an alt attribute, or you can use an image replacement technique such as this: mezzoblue.com/tests/revised-image-replacement – DA. Mar 18 '11 at 2:11
Thanks for the pointer. – larsks Mar 18 '11 at 13:37
feedback

Give this a go and let me know if it is what you are trying to achieve?

HTML:

<div id="container">
    <div class="logo">Logo here</div>
    <h1>TITLE</h1>
</div>

CSS:

#container{
    background-color:#ccc;
    position:relative;
    width:300px;
    height:200px;
}

.logo{
    width:110px;
    height:40px;
    background-color:#ff0000;
    margin: 0 auto;
}

#container h1{
    font-size:120%;
    font-weight:bold;
    text-align:center;
}

Here's a live demo: http://jsfiddle.net/jrLL2/

link|improve this answer
I think I must have misunderstood the question =S – Dan Mar 18 '11 at 6:23
feedback

Your Answer

 
or
required, but never shown

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