Re: [css-d] Table with fixed headers

2014-07-09 Thread Larry Martell
On Sun, Jul 6, 2014 at 10:52 AM, Larry Martell larry.mart...@gmail.com wrote: On Sat, Jul 5, 2014 at 3:14 PM, Karl DeSaulniers k...@designdrumm.com wrote: On Jul 4, 2014, at 1:18 PM, Larry Martell larry.mart...@gmail.com wrote: On Thu, Jul 3, 2014 at 10:49 PM, Karl DeSaulniers

Re: [css-d] Table with fixed headers

2014-07-06 Thread Larry Martell
On Sat, Jul 5, 2014 at 3:14 PM, Karl DeSaulniers k...@designdrumm.com wrote: On Jul 4, 2014, at 1:18 PM, Larry Martell larry.mart...@gmail.com wrote: On Thu, Jul 3, 2014 at 10:49 PM, Karl DeSaulniers k...@designdrumm.com wrote: Hi Larry, See my code pen. I think this is what your wanting

Re: [css-d] Table with fixed headers

2014-07-05 Thread Karl DeSaulniers
On Jul 4, 2014, at 1:18 PM, Larry Martell larry.mart...@gmail.com wrote: On Thu, Jul 3, 2014 at 10:49 PM, Karl DeSaulniers k...@designdrumm.com wrote: Hi Larry, See my code pen. I think this is what your wanting and it's table less. :) http://codepen.io/designdrumm/pen/FLAkc Haven't

Re: [css-d] Table with fixed headers

2014-07-04 Thread Larry Martell
On Thu, Jul 3, 2014 at 10:49 PM, Karl DeSaulniers k...@designdrumm.com wrote: On Jul 2, 2014, at 7:36 AM, Larry Martell larry.mart...@gmail.com wrote: On Tue, Jul 1, 2014 at 9:25 PM, Tom Livingston tom...@gmail.com wrote: Is it possible to have a scrolling table with fixed headers without

Re: [css-d] Table with fixed headers

2014-07-04 Thread Larry Martell
On Fri, Jul 4, 2014 at 2:18 PM, Larry Martell larry.mart...@gmail.com wrote: On Thu, Jul 3, 2014 at 10:49 PM, Karl DeSaulniers k...@designdrumm.com wrote: On Jul 2, 2014, at 7:36 AM, Larry Martell larry.mart...@gmail.com wrote: On Tue, Jul 1, 2014 at 9:25 PM, Tom Livingston tom...@gmail.com

Re: [css-d] Table with fixed headers

2014-07-04 Thread Karl DeSaulniers
On Jul 4, 2014, at 1:18 PM, Larry Martell larry.mart...@gmail.com wrote: On Thu, Jul 3, 2014 at 10:49 PM, Karl DeSaulniers k...@designdrumm.com wrote: On Jul 2, 2014, at 7:36 AM, Larry Martell larry.mart...@gmail.com wrote: On Tue, Jul 1, 2014 at 9:25 PM, Tom Livingston

Re: [css-d] Table with fixed headers

2014-07-03 Thread Philippe Wittenbergh
Le 2 juil. 2014 à 04:19, Larry Martell larry.mart...@gmail.com a écrit : But I want the table to be scrollable with a fixed header, so I do this: http://jsfiddle.net/mrLVG/ From testing I found that I have to have display: block; on both tbody.scrollContent and thead.fixedHeader tr or I

Re: [css-d] Table with fixed headers

2014-07-03 Thread Larry Martell
On Thu, Jul 3, 2014 at 6:27 AM, Philippe Wittenbergh e...@l-c-n.com wrote: Le 2 juil. 2014 à 04:19, Larry Martell larry.mart...@gmail.com a écrit : But I want the table to be scrollable with a fixed header, so I do this: http://jsfiddle.net/mrLVG/ From testing I found that I have to have

Re: [css-d] Table with fixed headers

2014-07-03 Thread Karl DeSaulniers
On Jul 2, 2014, at 7:36 AM, Larry Martell larry.mart...@gmail.com wrote: On Tue, Jul 1, 2014 at 9:25 PM, Tom Livingston tom...@gmail.com wrote: Is it possible to have a scrolling table with fixed headers without explicitly specifying the table cell sizes? Depending on your content

Re: [css-d] Table with fixed headers

2014-07-03 Thread Norman Fournier
That is well done, and best of all, without a table. On 2014-07-03, at 8:49 PM, Karl DeSaulniers wrote: On Jul 2, 2014, at 7:36 AM, Larry Martell larry.mart...@gmail.com wrote: On Tue, Jul 1, 2014 at 9:25 PM, Tom Livingston tom...@gmail.com wrote: Is it possible to have a scrolling

Re: [css-d] Table with fixed headers

2014-07-02 Thread Larry Martell
On Tue, Jul 1, 2014 at 9:25 PM, Tom Livingston tom...@gmail.com wrote: Is it possible to have a scrolling table with fixed headers without explicitly specifying the table cell sizes? Depending on your content this may be (or outright is) semantically horrifying, but you could achieve the

Re: [css-d] Table with fixed headers

2014-07-01 Thread Larry Martell
Maybe if I ask this question a different way, I can figure out an answer. Normally when I create a table I apply no CSS to it and it just does the right thing, e.g.: http://jsfiddle.net/u6ULk/ But I want the table to be scrollable with a fixed header, so I do this: http://jsfiddle.net/mrLVG/

Re: [css-d] Table with fixed headers

2014-07-01 Thread Tom Livingston
Is it possible to have a scrolling table with fixed headers without explicitly specifying the table cell sizes? Depending on your content this may be (or outright is) semantically horrifying, but you could achieve the *visual look* you want by using CSS display:table, et al and/or dl,dt,dd

[css-d] Table with fixed headers

2014-06-30 Thread Larry Martell
I am trying to implement a table with fixed headers using the concepts from this page: http://www.imaputz.com/cssStuff/bigFourVersion.html# Problem is, in my implementation, my table columns are not aligned with the table headers. Please see this fiddle: http://jsfiddle.net/softvar/yL84C/ If I

Re: [css-d] Table with fixed headers

2014-06-30 Thread Chris Rockwell
That example explicitly sets the width of each th and each td. The last th and td (the td, really) accounts for what the author thinks will be the width of the scroll bar. I forked your fiddle and added the top 3 declarations: http://jsfiddle.net/cFr38/ Hope it helps. Chris Rockwell On Mon,

Re: [css-d] Table with fixed headers

2014-06-30 Thread Larry Martell
On Mon, Jun 30, 2014 at 3:10 PM, Chris Rockwell ch...@chrisrockwell.com wrote: That example explicitly sets the width of each th and each td. The last th and td (the td, really) accounts for what the author thinks will be the width of the scroll bar. I forked your fiddle and added the top 3