For a similar issue, I used display: inline-block on the tag, which seems to help. And word-break: break-all as I was concerned with long URLs not wrapping.
So, this in your case essentially...
.tab_title a {
display: inline-block;
word-break: break-all;
}