Tagged Questions
20
votes
10answers
8k views
In CSS, how do I get a left-side fixed-width column with a right-side table that uses the rest of the width?
So I've tried to work with the pure-CSS, never-use-tables-for-layout gospel, I really have. But after an incredible amount of pain and anguish, I'm just about ready to give up. I'm willing to go to ...
2
votes
2answers
129 views
Browser doesn't scale below 400px?
I'm working on putting together a liquid style-sheet and it works wonderful. One thing that I've noticed is that my browser window in Chrome won't resize below 400px it just gets stuck there and in FF ...
2
votes
2answers
108 views
How to implement a vertical liquid layout with divs
My website has three components:
a fixed height header that spans the width of the screen
a fixed width nav under the header on the left that spans the remaining height of the screen
a content area ...
2
votes
3answers
153 views
CSS - Why does height seem to be set, when it's not?
Ok, this is really annoying and I can't understand why this is even happening.
I may have screwed some stuff up when trying to get the CSS Sticky footer to work.
I had one going on, but it seemed ...
2
votes
7answers
2k views
How do you make a webpage change its width automatically?
In HTML, is there a way to make a webpage expand to the user's monitor? Like say I have a 15inch, but someone else has a 24 inch. The webpage would be small on their screen, but would fit on min. ...
1
vote
2answers
23 views
Auto Fitting Content?
I want to know how http://staffanstorp.se/ has the capability of flowing content (I believe thats the term, please correct me if I'm wrong). I will also change the tags in accordance so others may ...
1
vote
2answers
36 views
Layout issues, part fixed width, part elastic
I've already had a look through some posts and couldn't find what I was after. I'm designing something in PS at the moment and I can foresee an issue when it comes to coding the design into html+css.
...
1
vote
2answers
130 views
css3 min-max width when zooming out pages
A good day to you. I am working on a webpage but I got stuck on defining the max and min width. Basically I would want my page to be centered in when zooming out the webpages like what most webpages ...
1
vote
2answers
388 views
Div layout with 3 columns: fixed - liquid - fixed
I'm trying to build a 3 column layout that has one fixed column on the left, a fluid column in the middle and another fixed column on the right.
Anyone seen this?
There are similar problems here, ...
1
vote
2answers
220 views
Liquid Layout: How to
If I mark all my divs in percent, they fill up all the space nicely. I am facing 2 problems:
a) Image sizes: How do I define image sizes so that they do not become larger or smaller than wanted as ...
0
votes
2answers
58 views
How to make a block of text have the same width as the images rows in a liquid layout?
I have one block of text, that is the resume of a gallery.
The gallery has a liquid layout, that's to say, you can see 4 pictures to x pictures, let's say, 8 pictures, depending on the screen width.
...
0
votes
1answer
57 views
HTML - Liquid Layout Zoom [closed]
The HTML layout I am using is having problems:
1) The "Now Playing" bar on the right won't move down to fit in nicely with the rest of the layout no matter what settings I change (left, margin-left, ...
0
votes
1answer
38 views
having trouble adjusting css height of divs to be 50% of page. I want liquid layout without using any em or pixels anywhere
I am trying to setup a liquid layout for a page and I am having great difficulty adjusting the height of the divs. I don't want a fixed layout because I want the page to fit like a glove, no matter ...
0
votes
1answer
46 views
HTML + CSS: take all available viewpoer
I'm trying to make liquid HTML layout with header (taking all available width and 130px height), 2 columns (1: 300px width all possible height, 2: all available width after column 2 took its 300px and ...
0
votes
2answers
64 views
Fluid height of middle element
Take a look at this piece of code
The height of the div is set to 100px, and overflow: hidden is hiding the content over 100px. What I want to do is to make the <ul> element fluid so regardless ...
0
votes
1answer
217 views
Tableless layout with two liquid columns (liquid - fixed - liquid)
So, this web application I'm working in haves three vertical columns expanding for the entire window height, and a footer div expanding for the entire width. The layout looks like this:
+|+
---
...
0
votes
3answers
83 views
Vertical DIV liquid layout issue
Given the following HTML/CSS, what is the simplest way of implementing a vertical 'liquid' DIV (#ribbon1 and #ribbon2) that grows with the content of the #content DIV?
<!DOCTYPE html PUBLIC ...
0
votes
2answers
85 views
Liquid layouts and borders
I am having problems with a liquid layout and borders, causing elements to overflow.
Here is a jfiddle with the exmaple of
the page with no borders (works
fine): http://jsfiddle.net/eRaB5/1/
Now ...
0
votes
3answers
301 views
HTML / CSS: How to make the content follow the footer?
My problem is that I need a footer which is always on the bottom, even if the page scrolls etc.. but I don't know how to make the content follow the footer.
Please see the example given, this is a ...
0
votes
1answer
610 views
Can't Prevent Nested Div's from Overflowing when using Percent Sizes and Padding in CSS?
I want to be able to layout nested divs with these properties:
width: 100%
height: 100%
padding: 10px
I want it to be such that, the children are 100% width and height of the remaining space after ...