0

I want to make my SplitButton take entire width and height of its current row. I tried to use the block prop for the SplitButton, but without luck.

fiddle --> https://jsfiddle.net/f9vdksnu/5/

Sahar
  • 436
  • 1
  • 4
  • 15

1 Answers1

0

have you try inline-block? on parent container?

maw2be
  • 91
  • 2
  • 12
  • but on this second with class test button looks like button in one line text and dropdown. I think this fix your problem – maw2be Aug 12 '16 at 12:53
  • I need this entire SplitButton component to fill its container, which in my case is the row. Can you please provide a fiddle? – Sahar Aug 12 '16 at 13:08
  • try on css add #record-status-select { width: 100px; } [link](http://jsfiddle.net/8xcbw5jg/) – maw2be Aug 12 '16 at 13:27
  • Didn't work, especially due to the fact that I don't want an obsolete width, I just want it to expand to the entire row. – Sahar Aug 12 '16 at 14:30
  • So change 100px to 100% – maw2be Aug 12 '16 at 14:37
  • Tried it, does not work as well. Did you manage to make the fiddle code work? – Sahar Aug 12 '16 at 16:34