- This topic is empty.
-
AuthorPosts
-
January 14, 2013 at 3:53 pm #41996
yekta
MemberHello,
With a few columns, I would like the first column to resizbale to a min and max width before any overflow of the parent container takes place.
Effectively to have a min-max width before the overflow-x of the columns container is overflowed.
I’ve generated a comprehensive minimalist example of what I’m referring to here: http://cssdesk.com/KKtBt
I’m trying to get .column-one to be minimum 425px and be able to grow until 600px if there’s room but it only does that once the column-two and column-three are gone. How might I get min & max width to apply with column-two and column-three present?
Thanks!January 14, 2013 at 4:52 pm #120997yekta
MemberOK, a simpler version of what I’m trying to do.
Any help is greatly appreciated: http://codepen.io/anon/pen/zkjsc
January 14, 2013 at 5:29 pm #120998dfogge
Participanti think you’d need to use media queries.
January 14, 2013 at 5:34 pm #120995yekta
MemberSorry I’ve been staring at this problem too long, where would they logically be applied?
January 14, 2013 at 7:47 pm #120977wolfcry911
Participantthe float has no defined width – only min and max. It therefore will shrink, or stretch, to fit the content. The content here is as wide as available (the p) and will be set to 600px – it will not shrink below that because of the content and lack of width.
Your comment in the pen states you can’t use width: 35%; – why not? it works…
January 15, 2013 at 9:26 am #120936yekta
MemberThanks for the explanation: I can’t use a % width because I will never know the exact width it should be. You see, I will have a dynamic number of columns in there, not just 2 or 3. Setting it to 35% width would have an inconsistent behavior about it, in my case. So since there will be multiple columns, at any given time — I need for the first column to be bigger if it can be or smaller if it has to, 600 and 425 respectively.
January 15, 2013 at 9:27 am #121064yekta
MemberI may just have to do this with JS, though I was really hoping there’s a CSS way to do it.
January 15, 2013 at 10:53 am #121073wolfcry911
ParticipantThere may be a CSS solution, but I don’t fully understand what you’re trying to do. How many columns max may there be? I’ll assume 3 for the moment… When there are three and room allows, column 1 will be 600px and col 2 and 3 will be a fixed width. When the viewport shrinks, what happens first? Does col 1 shrink to 425px? or does col 3 drop from view? In either case, when col 3 does drop, what then happens to col 1? Etc…
January 15, 2013 at 11:17 am #121079yekta
MemberPer the above description: when the viewport shrinks, what I need to happen first (before any column is dropped) is for the column-one to shrink, but only until 415px width.
(In real life) There will be as many columns as can fit on the screen (hence no % widths), the resize-able column needs to shrink or grow depending on whether or not room allows and actually, regardless of it’s column index position.
If this were achievable in CSS, it would absolve me of having to manually edit the DOM and css classes with JS, what CSS is much more efficient at doing.
January 15, 2013 at 12:10 pm #121084wolfcry911
ParticipantYou haven’t thought this through…
Let’s say there are three columns, col 2 and 3 are fixed width at 300px each. At viewport width greater or equal to 1200px col 1 is 600px and 2 and 3 fit without trouble (I’m assuming greater than 1200 there’s equal margin on each side, or perhaps just on one side – you haven’t covered that). Now the viewport shrinks below 1200 and col 1 begins to shrink while 2 and 3 are still 300px and still fit – no problem. At 1075px width col 1 has reached it’s min width col 2 and 3 are still fine. But at 1074px there’s no longer enough room for min col 1 and 2 300px col. So what happens? Col 3 drops – fine, where does col 2 go? You have more viewport width than combined col width, but not enough for 3 columns. Even if col 1 stretches to its max width of 600px you still have an extra 174px width unaccounted for…January 15, 2013 at 12:18 pm #121086yekta
MemberThe columns need to always be centered with equal margin on both sides, sorry I didn’t make that clear.
When the viewport is less than 1200px, col 1 isn’t shrinking while 2 and 3 are still 300 and still fit. That is the problem.
At 1074, assuming col 3 is dropped, the viewport width can fit col1 and col2 just fine and col1 would be able to be 600 again, they would both be centered and life goes on.
Does that all make sense?
January 15, 2013 at 1:11 pm #121090wolfcry911
ParticipantYes, makes sense now – thanks. Working on it…
Can the source order of the columns be changed or not?
Are all the columns after 1 the same fixed width?January 15, 2013 at 1:55 pm #121093yekta
MemberNot all the columns are actually going to be 300px. Aside from the min-max ‘column-one’ we’ve been discussing, some columns may be also be static 425px wide.
If by source-order you mean will column-one always start at col index 0, then no, it may be anywhere at any time.
January 15, 2013 at 2:03 pm #121094wolfcry911
ParticipantBy source order I meant the order it appears in the html. But it doesn’t matter now, with those last two bits of information, you’ve made it near impossible with just CSS.
January 15, 2013 at 2:11 pm #121096yekta
MemberYeah, that’s what I was afraid of, really appreciate you thinking through this!
Guess I’ll keep track of things in JS then,
Thank you very much. -
AuthorPosts
- The forum ‘CSS’ is closed to new topics and replies.