Re: [css-d] Best technique for: Any number of columns, plus fixed margin, in a responsive parent container

2016-01-21 Thread John D
If you are running it in Bootstrap (you said cutting edge technology) then it is pretty simple. I would do something like this: 1 2 3

Re: [css-d] Best technique for: Any number of columns, plus fixed margin, in a responsive parent container

2016-01-21 Thread Karl DeSaulniers
+1 on John's suggestion for ease of use. Best, Karl DeSaulniers Design Drumm http://designdrumm.com On Jan 21, 2016, at 9:54 AM, "John D" wrote: > If you are running it in Bootstrap (you said cutting edge technology) then it > is pretty simple. I would do something

Re: [css-d] Best technique for: Any number of columns, plus fixed margin, in a responsive parent container

2016-01-21 Thread Karl DeSaulniers
Yeah Mike, You can also use a UL and LIs to emulate a table. If you know your audience is going to be on a browser that handles display: table it works best. You can try your hand at a inline-block fall back, but it can get frustrating with all the different browsers and how they handle stuff.

Re: [css-d] Best technique for: Any number of columns, plus fixed margin, in a responsive parent container

2016-01-21 Thread Micky Hulse
On Thu, Jan 21, 2016 at 10:44 AM, Karl DeSaulniers wrote: > You can also use a UL and LIs to emulate a table. > If you know your audience is going to be on a browser that handles display: > table it works best. Good idea. I'm mostly just looking to gather a few good, quick