The fluid-layout tag has no wiki summary.
18
votes
6answers
1k views
CSS fluid columns, fixed margins; the holy grail of holy grails
Update & Summary
I feel obligated to make this question clearer, now that there is a bounty attached.
(Also, I'm pretty sure this will be child's play when the calc() CSS3 unit value is ...
10
votes
4answers
188 views
How to set auto-margin boxes in flexible-width design using CSS?
I have DIV with flexible width set e.g. min-width:800px and max-width:1400px. In this DIV, there are many boxes with fix width 200px and display:inline-block. So depending on parent DIV width, these ...
10
votes
5answers
2k views
width: 100%-padding?
I have an html input.
The input has padding: 5px 10px; I want it to be 100% of the parent div's width(which is fluid).
However using width: 100%; causes the input to be 100% + 20px how can I get ...
8
votes
2answers
1k views
Fluid width with equally spaced DIVs
I have a fluid width container DIV.
Within this I have 4 DIVs all 300px x 250px...
<div id="container">
<div class="box1"> </div>
<div class="box2"> </div>
...
5
votes
2answers
181 views
Why does order of float div and non-float div matter only in some cases?
I have a similar problem as CSS Auto Margin pushing down other elements: A right floating sidebar gets pushed down below the main non-floating content div. The answer proposed works: just reverse the ...
5
votes
5answers
2k views
Fluid CSS: floating column with max-width and overflow
I'm using a fluid layout in the new theme that I'm working on for my blog. I often blog about code and include <pre> blocks within the posts. The float: left column for the content area has a ...
4
votes
8answers
135 views
Make div and child div extend at least the full height of browser window
I need to have images that extend along the left and right sides of my main body div (actually for a sort of drop-shadow effect under the div).
This would be simple if it wasn't for the fact that I ...
4
votes
3answers
240 views
Which is the better jQuery approach to autofit children on parent DIV width?
Based on the answers to another mine question (this: How to make children auto fit parent's width only with CSS?), I'm thinking which is the best jQuery approach to solve the problem regarding ...
4
votes
2answers
1k views
How to make children auto fit parent's width only with CSS?
I have a server-side component that generates a fluid layout "toolbar" using DIV without fixed width, generating many A inside it.
Then I need customize that layout to make all A tags auto fit to the ...
4
votes
2answers
8k views
CSS Div width percentage and padding without breaking layout
There may be a simple fix for this, but it has troubled me for ages now...
Let me explain the situation. I have a div with the ID 'container' that holds all the contents in the page (including ...
4
votes
3answers
925 views
CSS: Centered, fluid left, fixed right, source ordered layout with min/max width
The titles says it. I want a 2-column CSS layout that:
is centered - the main content is centered on the page
has a fixed (pixel) right column width
has a fluid left column - uses up all available ...
3
votes
1answer
105 views
CSS Sprite in a fluid layout
I have a background image to be used for CSS sprite
Now the issue is I can only use fluid layout (only %, no px) and the % positioning creates an issue while resizing the browser (e.g. some portion ...
3
votes
1answer
204 views
Fluid input elements
I got this form...
<form method="post" action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>">
<fieldset>
<legend>Who are you?</legend>
<label ...
3
votes
2answers
440 views
Problem with percentage based widths in Opera
I'm trying to make a fluid grid layout and I've run into a problem with inconsistent width rendering in Opera. In Opera the width of elements are consistently smaller than the other browsers. I'm ...
3
votes
3answers
6k views
auto resize text (font size) when resizing window?
I have been trying(in vain) to build a page whose elements would resize as I changed the window size. I have it working in css for images no problem, but I can't seem to accomplish the same for text, ...
2
votes
1answer
35 views
Image styled with max-width in % is output in px by Firefox. Works in Chrome
It is hard to give this problem a simple title but I hope someone can help me.. Please have a look at this jsfiddle - http://jsfiddle.net/mrmartineau/AaeJY/ - in both Firefox & Chrome. The image ...
2
votes
1answer
42 views
Why doesn't IE respect table width with fluid image child
Consider the following code:
HTML:
<table>
<tr>
<td><img src="http://watduck.jpg.to" /></td>
</tr>
</table>
CSS:
table { width: 10% }
img ...
2
votes
5answers
68 views
How to fill 100% of remaing width
There is any work around to do something like this work as expected?
I wish there were something like that width:remainder; or width:100% - 32px;.
width: auto; doesn't works.
I think the only way ...
2
votes
2answers
71 views
Fluid images in Chrome: how to avoid repaint?
I'm working on a photography site with a lot of images and they have no fixed height and width as I want this site to be 100% fluid: how do you work around the ugly Chrome repaint of the images? (i.e. ...
2
votes
2answers
91 views
Pixel Border and Percentage width in Proportion
I think I might already know the answer to this one but I need a sanity check!
Say I have
#gridtest{
width:590px;
}
I could change the width to a percentage by using RESULT=TARGET/CONTEXT. In ...
2
votes
1answer
82 views
Three column fluid css
I am building a prototype mobile web application and trying to get 3 fluid but "equal" columns using just css, I have made the assumption I can use 33% on two columns and 34% on the last column. ...
2
votes
1answer
323 views
Relative width and padding on same element - responsive web design
In an effort to make my web sites more responsive, I'm trying to learn how to define elements fluidly. Today I came across a situation that I finally fixed, but I don't understand why the fix worked, ...
2
votes
1answer
57 views
Set width of element to combined width of siblings?
Three elements are inside a fluid container in the following configuration:
+-----------------+
| +-----+ +-----+ |
| | A | | B | |
| +-----+ +-----+ |
| +-------------+ |
| | C | |
| ...
2
votes
2answers
335 views
Enforce a “min-margin” for a fluid layout
I'm trying to build a site that works best at fairly high resolutions, but also slides as far left as possible when the resolution gets lower.
I'm not even sure what code to copy in here, so the link ...
2
votes
2answers
189 views
Semi Fluid Layout CSS/Html
I have a two column layout in which I have a static width for the right column of 350px, and for the left column the width should be such that it fills the rest of the page. Or at least that is what I ...
2
votes
2answers
138 views
How do you avoid the style = clear:both when using floating elements?
Usually when I have floating elements inside a container div, I'll have something like this:
<div class="container">
<div style="float: left;">content</div>
<div ...
1
vote
1answer
16 views
CSS columns bug — 5 column count only showing 4 (with images)
I am trying to implement Chris Coyier's example of using CSS columns to create a seamless responsive grid of images.
I put Chris's files onto my server and everything looked fine. The only thing I ...
1
vote
4answers
108 views
Fluid layout and css sprites
I used a css sprite to display backgrounds on a fixed width design. Im changing to fluid layout, but because of the background positions the background image goes wonky when the browser resizes.
Is ...
1
vote
1answer
26 views
Drop down navigation in fluid design, getting overflow when page resized
I'm having a hard time with my fluid design's navigation. When I shrink the page, the links fall under the black bar I've designated for them. If i say,
overflow: hidden;
Then my drop downs get ...
1
vote
1answer
233 views
Responsive Masonry jQuery layout example
Can anyone suggest how this site uses the jQuery Masonry plugin for its responsive, fluid layout?
http://tympanus.net/codrops/collective/collective-2/
Specifically;
The number of columns changes ...
1
vote
1answer
77 views
Center DIV content Fluid Vertical and Horizontal
This is the example I have:
Line height does not apply to fluid divs. The code I have is currently based on line-height but the the sizes of the boxes change. So how can I have a link (content) ...
1
vote
1answer
53 views
Browser Hack stopped working in Fluid Design
I have a small problem with a browser hack, one of my thumbnails needs to be a few pixels lower in webkit browsers than Firefox and it works fine on its own like this:
#thumbsicon
{
position: ...
1
vote
0answers
69 views
Strict Fluid Layout | jQuery Plugin
View jsFiddle
or
View JS Bin
I had this idea today that could combine both Fluid and Fixed width layouts and also make responsive layouts faster to build. It would also make the use of ...
1
vote
2answers
32 views
Css - Fluid layout, changing the look of the site at a per-determined width
I'm trying to work on a navigation bar much like the one at http://seesparkbox.com/
Generally, When a user is viewing the page in a computer browser window, I want the navigation to go fully ...
1
vote
4answers
100 views
How to implement fluid design to fit 1024x768 size monitor or higher?
Simply, I want the body of the site to occupy 100% of the browser in 1024x768 monitors, and for monitors with higher resolution (1024x768 and higher) to display the body in the middle (center aligned) ...
1
vote
1answer
68 views
Force child div to take 100% of parent height
I am designing a fluid layout (no fixed px, all in %)
I have the HTML as;
<div class="parent">
<div class="fl child"><a class="prev"></a></div>
</div>
If I ...
1
vote
3answers
75 views
css layout: image gallery with left-bar
I'm trying to implement a design with a shrink-wrapped left bar and a fluid main panel, which will allow as many pictures to be shown as the window width will accommodate, without a horizontal scroll ...
1
vote
3answers
71 views
Question on Fluid Web design
There are 2 ways in which we can implement a fluid design (one that would adjust itself to the screen size on which it is viewed on);
Approach 1:
We can just use the available browser size (or ...
1
vote
1answer
125 views
Does Android layouts work like HTML/CSS layouts?
I have created a button in Photoshop and I have split them into 3 images. Now I want to put those images into android button. I know how to create layouts in android but the point I am missing is how ...
1
vote
1answer
96 views
CSS Fluid layouts
I am designing a website using the CSS fluid layout (based on adaptive/responsive web design)
So I would not give anything as fixed value i.e. in px (only use %)
My question is ; While I do ...
1
vote
2answers
181 views
Proper way to achieve 3-Column layout with fluid center
I am working on a 3-column layout with two fixed-width sidebars (left and right) and a fluid center. I have followed A List Apart's Holy Grail article (http://www.alistapart.com/articles/holygrail/) ...
1
vote
1answer
86 views
CSS columns: both fluid and flexible in width
In 2011 I've been stumped with a 2 column layout. I feel ashamed. ;)
The challenge is to come up with this:
+--------------------------------------++----------------+
| This is a header with ...
1
vote
1answer
363 views
Anchor tag around fluid image in Internet Explorer 8
I'm having some trouble with a fluid layout (with images using max-width:100%) in Internet Explorer 8. The problem comes when I want to wrap an anchor tag around a flexible-width image and margins, ...
1
vote
1answer
124 views
Make a column fluid down to min-width, then push float sidebar down
Suppose you have two divs: one with fluid width with a min-width and another div that's floating to the right. For example, this live demo (with code) at jsbin.com has this:
<div ...
1
vote
3answers
385 views
Troubleshooting CSS padding in responsive design
This simple HTML5 layout is intended to have a navigation bar on the left with body text floated alongside it (using percentages rather than pixels for a fluid, responsive design - calculations are in ...
1
vote
2answers
616 views
What is the prefered way to Scale up and down images in responsive web design for Mobile?
What is the prefered way to Scale up and down imagesin responsive web design?
Different image for different screen size is better or We can scale same image up and down?
Which option is best ...
1
vote
2answers
1k views
Vertically center a fluid image in a fluid container
I certainly do not want to add to the pile of vertical alignments CSS questions, but I've spent hours trying to find a solution to no avail yet. Here's the situation:
I am building a slideshow ...
1
vote
1answer
374 views
Cover entire client area with a 960.gs flexible grid layout
Hi people
I'm using http://960.gs grid system/framework
I'm having some head-to-wall punching trying to make a flexible layout that allows me to cover the width and height of visitor's browser client ...
1
vote
1answer
134 views
Silverlight fluidLayout fail
So this is going to be a bit difficult to explain, but I'll give it a go an hopefully someone will recognize what I'm talking about.
So I have a StackPanel in which there are 3 Buttons and 3 Lists ...
1
vote
1answer
119 views
Fixed-width or fluid-width for accessibility
I was told that fixed-width websites are not accessible because most screen readers cannot read content that scrolls off the screen. Is there any truth to this? This doesn't sound correct to me, so ...