6

I have a table and i want to have ink and ripple effect for specific row in the table. when i add the attribute md-ink-ripple to tr element of table, it shows the ripple for entire table. please let me know how to fix this issue.

shyam_
  • 2,370
  • 1
  • 27
  • 50
  • 2
    I think this is not gonna work because it adds a absolute positioned `div` with class `md-ripple-container` to the `tr` element which is invalid html anyway. The closest you can get IMO is applying `md-ink-ripple` to the `td` element as in http://codepen.io/z00bs/pen/QNxeWd. – z00bs Apr 21 '16 at 09:54

1 Answers1

4

You can add display: block; position: relative; to the row styling - but that can result in odd behavior.

ClickerMonkey
  • 1,881
  • 16
  • 13