This grid works:
Grid[Table[Append[ConstantArray[1, 5],
If[i === 1, Button["", 0;, ImageSize -> {30, 315}], SpanFromAbove]],
{i, 20}], Alignment -> {Center, Center}, Frame -> All]
I want the first row to be one single place, except for the button, but when I do it, it gets crap:
Grid[Table[Append[If[i === 1, Prepend[ConstantArray[SpanFromLeft, 4], 1], ConstantArray[1, 5]],
If[i === 1, Button["", 0;, ImageSize -> {30, 300}], SpanFromAbove]],
{i, 20}], Alignment -> {Center, Center}, Frame -> All]
What can I do to the second piece of code to make the button align like it did the first time?
ImageSize -> {30, Full}helps a bit but does not solve the problem. – Alexey Popkov Aug 09 '14 at 15:32