I'm trying to achieve a fixed width centred layout with headings that 'stretch' to the edge of the users browser. Like this...

Any ideas how I can achieve this?
|
I'm trying to achieve a fixed width centred layout with headings that 'stretch' to the edge of the users browser. Like this...
Any ideas how I can achieve this? |
||||
|
This works splendidly. It could use some refinements, but the idea is quite solid. CSS:
HTML:
|
|||||||||||||
|
|
Maybe you could use an illusion to accomplish this? You can try having a blue bar with width = 100% sit behind all of your page content, such that it is only exposed to the right of the blue "sub-heading" section, but always reaches the right edge. You just have to make sure you eclipse the rest of it (anything to the left of the blue "sub-heading" element). |
|||
|
|
|
if you want be fixed in the window you can use Demo: http://jsbin.com/awoke3 |
|||||
|
|
Perhaps this would work?
|
|||
|
|
Here is my attempt using JavaScript, maintaining a fixed width center: Demo Otherwise, I don't think what you want is possible using pure CSS, but I could be mistaken. |
|||
|
|
margin:0;width:100%, for putting an element on the rightfloat:rightcan do the job. – pimvdb Feb 25 '11 at 16:42