Man alone of all beings, when addressed by the voice of Being, experiences the marvel of all marvels: that what-is isMartin Heidegger
Relates to CSS Design
Finally got round to downloading the Mozilla 1.4 CR build last night, and been playing around setting up as my default development browser today. I had rarely used the DOM inspector in older versions, but now realising what a handy inclusion it is for mapping out errors, especially when working with absolute positioning in CSS using the Box Dimensions.
I did get a bit of a shock to discover that the WWT rebuild I created last week was totally reluctant to display in the new browser. A quick run through Firebird confirmed this was a conflict between the CSS I had declared and the Mozilla browsers.
The original stylesheet positioned each column
using the float:left property - I knew there were problems with cutting off text in IE6 when assigning float to div containers, but had not seen it in Moz before.
The culprit was the relative declaration of the footnote, however I decided an alternative approach was called for. So a quick clean up operation!
div {float:left}div {position:absolute;left:0} and div {position:absolute;right:0}Here is the result And I guess the the lesson is, Mick,
If you play with float you play with fire!
Posted on Saturday, Jul 05, 2003 at 17:19:06.
Comments on The Fallacy Of Floating (0)