Re: [css-d] 3 elements side by side

2014-11-11 Thread MiB
nov 11 2014 00:09 Tom Livingston : > > What's your favorite, most reliable way to get 3 elements (block or > inline-block) side by side (no gap between) to span the full width of > their parent? And hopefully not leave a gap at all… If I have a fixed height of the subelements my fav is to posit

Re: [css-d] 3 elements side by side

2014-11-10 Thread Tom Livingston
Thanks guys. I seem to always forget CSS tables... I'll give it a shot. I got some complicated transform hover effects that I need to play nice... On Mon, Nov 10, 2014 at 7:58 PM, Karl DeSaulniers wrote: > On Nov 10, 2014, at 5:09 PM, Tom Livingston wrote: > >> Hello list, >> >> What's your favo

Re: [css-d] 3 elements side by side

2014-11-10 Thread Karl DeSaulniers
On Nov 10, 2014, at 5:09 PM, Tom Livingston wrote: > Hello list, > > What's your favorite, most reliable way to get 3 elements (block or > inline-block) side by side (no gap between) to span the full width of > their parent? And hopefully not leave a gap at all... > > I'm struggling to rid myse

Re: [css-d] 3 elements side by side

2014-11-10 Thread Chris Rockwell
You have flexbox, display:table-cell, display:inline-block, float:left. I prefer flexbox but most often use one of the display's and avoid float at almost all costs. Are you using inline-block and running into this: http://css-tricks.com/fighting-the-space-between-inline-block-elements/? On Nov 1

[css-d] 3 elements side by side

2014-11-10 Thread Tom Livingston
Hello list, What's your favorite, most reliable way to get 3 elements (block or inline-block) side by side (no gap between) to span the full width of their parent? And hopefully not leave a gap at all... I'm struggling to rid myself of a nasty but tiny gap. Sorry, no link. Thanks in advance. -