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

2016-01-29 Thread Micky Hulse
On Thu, Jan 28, 2016 at 7:08 AM, sullivanlehdesigns wrote: > Check out gridsetapp.com > If the site is simpler, http://getskeleton.com/ is great. Cool! Thanks! > I don’t personally use frameworks because I want to understand the code Ditto! I mean, I use frameworks, but I also like to understan

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

2016-01-28 Thread sullivanlehdesigns
Check out gridsetapp.com if you’re creating a complex design to adjust the number of columns per row automatically. Set up a grid and choose breakpoints and margins (between columns, not page borders). It creates the css styles for the different sizes and then just add those to the html contain

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

2016-01-22 Thread Micky Hulse
Thanks for the additional replies and help everyone. :) Interesting stuff. Since we're talking about (grid) frameworks, I'm a huge fan of Pure: http://purecss.io/ It's pretty easy to just utilize their grids via their CDN. Also, they have a Grunt task so you can modify the dimensions during yo

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

2016-01-22 Thread Tim Arnold
You can download a customized bootstrap (http://getbootstrap.com/customize/), or simply comment out the components that you don't want to use if using LESS or SASS: https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/_bootstrap.scss https://github.com/twbs/bootstrap/blob/master/le

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

2016-01-22 Thread Tom Livingston
Oops... The new Foundation is supposedly more lightweight than previous versions. > > -- Tom Livingston | Senior Front End Developer | Media Logic | ph: 518.456.3015x231 | fx: 518.456.4279 | medialogic.com #663399 __ css-disc

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

2016-01-22 Thread Tom Livingston
The new Foundation is supposedly more lightweight than -- Tom Livingston | Senior Front End Developer | Media Logic | ph: 518.456.3015x231 | fx: 518.456.4279 | medialogic.com #663399 __ css-discuss [css-d@lists.css-discuss.or

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

2016-01-22 Thread Karl DeSaulniers
It would be nice and IMO a smart move forward for Bootstrap to remove all the excess and package it as a separate modular downloads. Icons, animations, styles and then have just the framework available without. Call it Bootstrap Bones... lol ...you heard it here first. :P I would use that religi

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

2016-01-22 Thread Tim Arnold
On Fri, Jan 22, 2016 at 5:50 AM Karl DeSaulniers wrote: > There is also... > > http://getskeleton.com > > ..which is about as basic a grid system. > Found this one when I had gotten tired of bootstrap's bloat. > > I agree with Karl that Bootstrap is overkill if you're just looking for a grid syst

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

2016-01-22 Thread Karl DeSaulniers
There is also... http://getskeleton.com ..which is about as basic a grid system. Found this one when I had gotten tired of bootstrap's bloat. Best, Karl DeSaulniers Design Drumm http://designdrumm.com On Jan 21, 2016, at 5:26 PM, Micky Hulse wrote: > Interesting! Great points and advice.

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 to implement with low

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 Karl DeSaulniers
ch grid is 3. but you get the idea. > > > > /* Quoted Message Follows: */ > -----Original Message- From: Micky Hulse > Sent: Thursday, January 21, 2016 12:06 AM > To: CSS-Discuss > Subject: [css-d] Best technique for: Any number of columns, plus fixed > margin, in

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

2016-01-21 Thread John D
Follows: */ -Original Message- From: Micky Hulse Sent: Thursday, January 21, 2016 12:06 AM To: CSS-Discuss Subject: [css-d] Best technique for: Any number of columns, plus fixed margin, in a responsive parent container Hi! Just curious what techniques you use when you want to have a c

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

2016-01-20 Thread Tom Livingston
Oh boy. Getting late. Sorry. ... > > .child{margin-left;0;} > .child + .child{margin-left:x;} > > -- > > Tom Livingston | Senior Front End Developer | Media Logic | > ph: 518.456.3015x231 | fx: 518.456.4279 | medialogic.com > > > #663399 > > -- Tom Livingston | Senior Front End Developer | Medi

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

2016-01-20 Thread Tom Livingston
Sorry. I guess to be more clear it should be: .child{margin-left;} .child + .child{margin-left:x;} On Wednesday, January 20, 2016, Tom Livingston wrote: > I use > .child + .child{margin-left:x;} > > > -- > > Tom Livingston | Senior Front End Developer | Media Logic | > ph: 518.456.3015x231 | fx

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

2016-01-20 Thread Tom Livingston
I use .child + .child{margin-left:x;} On Wednesday, January 20, 2016, Micky Hulse wrote: > Hi! > > Just curious what techniques you use when you want to have a container > with any number of child columns that have fixed-width margins, only > on the inside of columns. > > For example, I would

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

2016-01-20 Thread Micky Hulse
Hi! Just curious what techniques you use when you want to have a container with any number of child columns that have fixed-width margins, only on the inside of columns. For example, I would like to create a 4 column module (pseudo-markup follows): … and later have the ability to throw-in