This is possible, you simply need to apply the display style to those buttons as well as the div. Though buttons may use something other than 'block'. On the other hand, you may be able to simply...
I understand that. What I'm saying is that there's nothing in between them, the createButton is right up against the cancelButton with not even a space between and their combined width is definitely...
Unfortunately I can't link to the testing page due to the presence of sensitive data, and more unfortunately, this is part of a much larger set of functions.
So you're saying that the <tbody> element is acting like that because we're setting it to a display type that it's not compatible with? So... if he sets the display to...
Well, what's happening is that your 2nd row is confining itself to the width of the 1st cell. It's acting like the tbody is a cell with a colspan of 1, though I don't know why.
I'm using the document.createElement method to add dynamic table and from elements to a page, but I'm running into a problem where I'm adding 2 objects to 1 cell. The two of them combined are not...
Yes, I'm aware of that. What I'm saying is that when I used single quotes, it was broken. Then I switched to escaped double quotes and it worked. Don't know why, don't know how. All I know is that it...
Okay. By commenting out every bit of my javascript except this array and the function that uses it, I have deduced that the problem is in fact stemming from somewhere else in the code...