When attempting to determine the precise width of a table cell, I encountered some discrepancies. While IE9's developer toolbar indicated a width of 203.68px in the Layout tab, using element.clientWidth
and other methods yielded a rounded integer value of 204px.
My goal was to align another element perfectly with this table cell. However, due to IE8/9 (and Firefox 4 and Chrome 12) displaying the table cell at its true floating point width (potentially around 203.5px or 203.75px), the other element ended up slightly wider than intended.