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

alt text

How can I accomplish the above using divs and CSS?

share|improve this question
2  
I must say that I liked the original title better. :) – agorenst Aug 6 '09 at 19:56
2  
You forgot to ask an actual question. – Guffa Aug 6 '09 at 19:57
Sounds like a homework problem. – kmiyashiro Aug 6 '09 at 20:59
Why do you care if it is a homework problem? :P – Thorarin Aug 6 '09 at 21:02
Can someone be redundant and put the text of the image in the body of the question? – random Aug 7 '09 at 1:49

3 Answers

The code below should do it. The image in my example is 80 by 80 pixels. I'm assuming a 2 pixel white border inside, and added a little padding on the green box on the left and right.

Result

(I mis-cropped a little, but you get the idea)

<div class="wrapper">
    <div class="innerBorder">
        <img src="images/thorarin.jpg" />
        Lorem ipsum dolor sit amet... (snip)
    </div>
</div>

<style type="text/css">
    div.wrapper
    {
        border: solid 2px red;
    }

    div.wrapper div.innerBorder
    {
        border: solid 2px white;
        background-color: green;
        padding-right: 3px;
        height: 80px;
        overflow: hidden;
    }        

    div.wrapper div.innerBorder img 
    {
        float: left;
        border-right: solid 2px white;
        margin-right: 3px;
        width: 80px;
        height: 80px;
    }
</style>

Edit: oops, removed the clearing DIV. I originally made this for variable height, but that wasn't a requirement.

share|improve this answer
1  
+1 Looks quite good – Andreas Grech Aug 6 '09 at 21:08
The overflow is optional, but otherwise +1 – mwilcox Aug 7 '09 at 1:13

This site will help you set everything up. Getting the colors right isn't hard after that.

share|improve this answer

Use the CSS Width property to set the width of the element.

share|improve this answer

Your Answer

 
discard

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