How do I get the \"x\" to be vertically-aligned in the middle of the span?
.foo { height: 50px; border: solid black 1px; display: inline-block;
this works for me (Keltex said the same)
.foo { height: 50px; ... } .foo span{ vertical-align: middle; } middle!