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

Sorry for the slightly rubbish title. I could not think how to describe this one better.

I am trying to implement the Google Friend Connect members gadget on my site, (just got into the scheme and want to put it in without a major redesign, at least for testing sake).

My problem is as follows:

I have a container div that has a width of 90% of the main page (body). Inside this I am floating a div to the right and setting its width to 300px and putting the google gadget inside it. What I would like is to be able to have a div fill 95% of the space remaining to the left of the google gadget div.

I don't know if it is possible to be able to mix px and % with divs and widths.

I hope this makes sense.

Thanks

share|improve this question

1 Answer

up vote 56 down vote accepted

It is. You're looking for a semi-fluid layout. The quest was was originally the holy grail of CSS implementation... But as you can see from that link (they're doing 3 columns, 2 fixed but it's easy to alter), it's a problem long solved =)

share|improve this answer
Looks perfect. Thank you. I will have a fiddle with this over the weekend. – Jon Dec 5 '08 at 9:55
28  
It is articles like this which reaffirm my fear that CSS is far, far from a good tool for layout. – Sidnicious Jan 18 '11 at 22:16
4  
@Sidnicious As somebody who does this [converting designs into websites] as my bread-and-butter work, I can tell you it's far better than anything else that has been before or been suggested since. It's not perfect and you need to know how it works... But once you do, it's simple. – Oli Jan 18 '11 at 22:44
but if you want to change the width of a column then you have to edit values all over the place. There's an annoying notion of "if it works don't touch it at all costs, and please don't criticise it", but layout could be vastly easier. if you just mix % and px and refer to other values everything would be a lot simpler. – Jonathan. Jan 4 at 22:40
1  
@Jonathan. There's no doubt that this is true - live variables and arthmetic in CSS would make things vastly easier but we don't have that. If you want to break down the plasticity, look at LESS/SASS/etc. They're half the solution. – Oli Jan 4 at 23:24
show 1 more comment

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.