Re: [css-d] aligning some text in td at bottom

2013-11-17 Thread Sara Haradhvala
Thanks, David. The flex solution is really nice - I'm so glad you worked that through! I have to support IE7+ (not my choice), so I would have to use JS in addition to this. (And for some reason, I'm not getting the flex tags in IE10 - but I haven't taken a look at why these aren't coming

Re: [css-d] aligning some text in td at bottom

2013-11-17 Thread Sara Haradhvala
Chris, I agree with this. And adding new rows means you have to turn off some borders to make it look right - you don't want borders between the text and its link. Sara On Nov 16, 2013, at 4:05 PM, Chris Rockwell ch...@chrisrockwell.com wrote: Except that to position the link inside

Re: [css-d] aligning some text in td at bottom

2013-11-17 Thread Sara Haradhvala
Hi Karl - thanks. This doesn't work for me in IE. Did you see it working there? Sara On Nov 16, 2013, at 7:58 PM, Karl DeSaulniers k...@designdrumm.com wrote: On Nov 13, 2013, at 3:02 PM, Sara Haradhvala wrote: Would really appreciate a suggestion and explanation from this group.

Re: [css-d] aligning some text in td at bottom

2013-11-17 Thread Karl DeSaulniers
The link to the zip file or the html files inside the zip didn't work in IE? I am not able to test on IE being that I am on a Mac at the moment. Sry. Best, Karl DeSaulniers Design Drumm http://designdrumm.com On Nov 17, 2013, at 6:17 AM, Sara Haradhvala wrote: Hi Karl - thanks. This doesn't

Re: [css-d] aligning some text in td at bottom

2013-11-17 Thread MiB
On Nov 16, 2013, at 4:05 PM, Chris Rockwell ch...@chrisrockwell.com wrote: Except that to position the link inside the table cell isn't the only solution, Why not on a new row for instance? Why must the link belong on the exact same row? I don't see that. Should the link not

[css-d] Chrome for Mac disowns children

2013-11-17 Thread David Hucklesby
Developing a drop-down menu, I'm following an idea I came across that adds a marker to a menu item that has a following sub-menu[1]. It uses this selector that works in CSS3 browsers: .nav li a:first-child:nth-last-child(2) {...} While this works in modern browsers, the marker disappears in

Re: [css-d] Chrome for Mac disowns children

2013-11-17 Thread Philippe Wittenbergh
Le 18 nov. 2013 à 13:11, David Hucklesby huckle...@gmail.com a écrit : While this works in modern browsers, the marker disappears in Chrome v.31.0 for Mac. In this simplified Pen, it disappears on :hover. With slightly more complex CSS it does not appear on Chrome at all. (Okay on Chrome

Re: [css-d] Chrome for Mac disowns children

2013-11-17 Thread Chris Rockwell
Marker disappears on hover in chrome 31 on windows 7 also. I would try to help you debug, but all those positional selectors make my head hurt. I think it's cool for dev's to figure out what can be done, but I seriously hope I *never* have to debug a site with CSS like that :D On Sun, Nov 17,

Re: [css-d] aligning some text in td at bottom

2013-11-17 Thread Karl DeSaulniers
On Nov 13, 2013, at 3:02 PM, Sara Haradhvala wrote: Would really appreciate a suggestion and explanation from this group. I'd like to align a link at the bottom of a table cell. The rest of the text should be aligned at the top of the cell. I'd also like to leave some padding above the

Re: [css-d] Chrome for Mac disowns children

2013-11-17 Thread Karl DeSaulniers
On Nov 17, 2013, at 10:11 PM, David Hucklesby wrote: Developing a drop-down menu, I'm following an idea I came across that adds a marker to a menu item that has a following sub-menu[1]. It uses this selector that works in CSS3 browsers: .nav li a:first-child:nth-last-child(2) {...}

Re: [css-d] Chrome for Mac disowns children

2013-11-17 Thread Barney Carroll
This sounds uncannily familiar to Georg's reported bug for Chrome v31 3 days ago on this list whereby stateful re-rendering didn't happen. His example involved invisible checkboxes expanding content via the :checked pseudo-class. My take on this is that the Chrome team did some aggressive

Re: [css-d] Chrome for Mac disowns children

2013-11-17 Thread Karl DeSaulniers
On Nov 17, 2013, at 11:32 PM, Barney Carroll wrote: This sounds uncannily familiar to Georg's reported bug for Chrome v31 3 days ago on this list whereby stateful re-rendering didn't happen. His example involved invisible checkboxes expanding content via the :checked pseudo-class. My