The anchor has display inline block and vertical align middle. Webkit needs a tag wrapped around the bare numbers there and given the same (inline block and vertical align middle) in order to “middle” correctly. As a whole my markup is very minimal so I can get away with just targeting everything by tag not id. But I’ve run out of the usual tags to use. So in this case, whats the most appropriate tag to wrap these numbers in? em, abbr, span, or other?
yeah thats what I would have used but the span was already targeted so I was looking for another. I guess you could use abbr. Numbers could be an abbreviation for the spelling version. But no worries, I’m good as is, didnt need anything.
There is no ABBR and no EM needed and if anything it would be the title attribute if you considered the user incapable of understanding a numeric digit.
Hm, personally I think that’s stretching it, but, no biggie.
There is no ABBR and no EM needed and if anything it would be the title attribute if you considered the user incapable of understanding a numeric digit.
Title locks out the mouseless who don’t have screen readers. Then again, if the user can’t understand numbers, they probably can’t understand anything on the site anyway : )
Yeah. I used to just be willy-nilly with my tags. P here b there. But I’m trying to use more meaningful tags of late. As you said, span is prob most appropriate.