Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

93
votes
16answers
42k views

Which method of 'clearfix' is best?

I have the age old problem of a div wrapping a 2 column layout. My sidebar is floated so my container div fails to wrap the content & sidebar. <div id="container"> <div ...
23
votes
6answers
1k views

Is clearfix deprecated?

You are aware of the age-old problem: Containers containing floated elements don't automatically expand their height to enclose their children. One approach to fix this is the "clearfix" which adds ...
14
votes
1answer
2k views

ClearFix vs Overflow

Its the standard float issue. You have a bunch of floating elements inside a parent container div. Since the childs are floating, the parent doesnt expand to include all of them. I know about the ...
7
votes
2answers
2k views

960 grid's clearfix vs HTML5 Boilerplate's clearfix - What's the difference?

960 grid's clearfix vs HTML5 Boilerplate's clearfix - What's the difference? Here's the clearfix found in Nathan Smith's 960 grid's css: /* ...
5
votes
4answers
122 views

What actually is clearfix?

Recently I was looking through some website code, and saw every <div> had a class clearfix. After a quick google, I learnt that is is for IE6 sometimes, but what *actually is clearfix and ...
3
votes
2answers
204 views

The modern way to clear floated content?

What's the modern way to clear floated content these days? There's the "recent" modern way of adding a ".clearfix" on the parent element to clear the contained floats and that would work great. In ...
2
votes
2answers
94 views

Left Align Label - Right Align Select Element (CSS)

I have a form layout that I want to display the label aligned left and the form control aligned right. I have been trying to get it to work using a float:right on the form control (in this case a ) ...
2
votes
2answers
54 views

Inline clearfix before <strong> in css

I would like to break the line automatically before a <strong> tag begins. I'd try a couple of things, but can't find out how to do so. I tried: strong, b {font-weight: ...
2
votes
3answers
785 views

What might cause this CSS margin sharing(?) bug in Firefox to occur?

I ran into this unusual Firefox-only (as far as I know - I only checked against Safari and Chrome, and was using Firefox 3.6) CSS bug today at work, and managed to reproduce the problem with a much ...
1
vote
3answers
544 views

“Best clearfix ever?”

I saw this rather different method for clearfix here: http://www.marcwatts.com.au/blog/best-clearfix-ever/ It proposes adding the following CSS code which automates clearfix and does not require you ...
1
vote
1answer
54 views

Whats wrong if I use floating element to all html tags?

I'm currently using 'float:left' to all of my tags when slicing. Whats wrong with it? I think, the pros is I need not to do "clearing hacks" at all. Sorry for my poor english.
1
vote
3answers
329 views

CSS expand div right floated div

I have a main div (purple) for this html header which splits in 2 other divs contaning the logo (red) and some other information on the right (green) I have a clear fix for purple which makes both ...
1
vote
1answer
149 views

What is the most reliable clearfix method for HTML in emails?

clear doesn't work in Outlook 2007/2010, as well as display (and many other CSS properties). What should I use? I need to support all of the clients in this matrix, except Lotus Notes. FYI: I am ...
1
vote
2answers
128 views

CSS: Parent/Child height issue

I'm struggling with a sidebar height. My container is now showing the correct height (that of the content inside), but my sidebar that should be using 100% of that height is still not appearing. ...
1
vote
2answers
173 views

Major IE8 positioning issues

I know its a not a new concept that my site is perfect on FF,Safari and Chrome but jacked up on IE8. That being said and cutting to the chase. This is the home page that I am working on for a social ...
0
votes
0answers
14 views

Container offsetHeight not reflecting content height, but not floating elements

I have a set of nested div elements, the innermost one being filled by AJAX. <div id="col_middle"> <div id="cpm"> <div id="comment_list"> ... The offsetHeight of ...
0
votes
2answers
42 views

Clearfix not making div's height expand to fit content

I have a div which contains 2 child elements. The 1st div have content added dynamically via jQuery on user interaction. The 2nd is a text area which have a problem not getting contained within its ...
0
votes
0answers
15 views

How to avoid the use of .clearfix?

This question may have a mix of knowing what clearfix is and how it works, but every time I find myself using the .clearfix class I wonder if there is a rule of thumb on avoiding to use it overall? ...
0
votes
1answer
91 views

Having an issue with clear fix not working with 960 grid system

I was building a mockup with 960 Grid System and ran into an issue with .clearfix. I'm not a fan of having extra divs in my code to trigger clear and in ALL the documentation around .clearfix seems to ...
0
votes
2answers
343 views

SASS / SCSS Mixin for Clearfix - best approach?

I want to remove the clearfix class from my html and include a clearfix mixin in my SCSS (Rails 3.1 application). What is the best approach to this? I am thinking of just taking the HTML 5 ...
0
votes
3answers
105 views

jQuery append doesn't see changes?

I have some scripting that modifies my web application. What it basically does is: Add dynamic elements to the DOM Resize some DOM elements to fit the window height and other stuff... So, I do: ...
0
votes
1answer
204 views

How to correctly apply the .clearfix:after class to HTML?

I'm currently trying (and failing) to get the .clearfix:after clearing fix that is detailed on stack here, and on position is everything here to work in Chrome and Firefox. My understanding is that ...
0
votes
1answer
185 views

Is clearfix a good technique for float clearing in css

I was using clearfix to clear the floating effect in CSS, but I was told that it's not really good technique and I should use something else. Is that true? And if it is, are there other alternatives ...
0
votes
4answers
175 views

Is there a non-trivial purpose for defining a css style for HTML[xmlns]?

Note this clearfix solution offered here. Why is there a separate style defined for HTML[xmlns]? Is this a CSS hack designed to target a specific browser? UPDATE: Here is the code in question, ...
0
votes
2answers
105 views

How do I get IE to properly reposition an element after a sibling resizes vertically?

I have the following markup: <nav id='tab_links'> <a href='#view1'>One</a> <a href='#view2'>Two</a> </nav> <div id='container'> <div ...
0
votes
1answer
261 views

Block Hover Effect - Why doesn't it work correctly in FF3.6?

Why doesn't following code work correctly in FireFox 3.6? I have tested in IE7, IE8, and Chrome with out any issues. Issue: The first block hover link (the table's 3rd row) doesn't apply the same ...
0
votes
4answers
1k views

CSS clearfix problem with Firefox 2 and SeaMonkey

I am using yaml for layout and famous clearfix css to make sure container with floats get extended. Everything works fine with Firefox 3, IE6, IE7, IE8, Opera 9 and Google Chrome, but I have issue ...