I suggest adding the following CSS to <kbd> tags (such as Space) so that the top right and bottom left corners do not look slightly odd.
Solution is to round those two corners in such a way that they do not exactly look rounded.
kbd { border-radius: 0 3px; -moz-border-radius: 0 3px; }
This produces: (Old on the left, new on the right)

This slight change will make practical uses much better looking. While still preserving the layout of all the art that has been created.
4px:) – George Bailey Nov 28 '11 at 17:52<kbd>! – Arjan Nov 28 '11 at 17:56outsetproperty instead? See also Can we have the nicer Apple SE/Ask Different <kbd> tag network-wide? – Popular Demand Nov 28 '11 at 18:01<kbd>, representing user input, should not render to look like keys at all. Like, according to the w3.org wiki:input "<kbd>Yes</kbd>" or "<kbd>No</kbd>". To represent actual keys, all<kbd>'s should be wrapped into a parent<kbd>... That looks even worse. – Arjan Dec 7 '11 at 13:14<kbd>tags is very small. But it is interesting to know what the original intent was. – George Bailey Dec 7 '11 at 14:25