Hey Wes,
Have you seen this? Its named after Scott Kellum and its claimed that if you use it instead of “text-indent: -9999px;” really long strings of text will never flow into the container because they always flow away from the container and performance is dramatically improved because a 9999px box is not drawn. Noticeably so in animations on the iPad.
.hide-text {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}
What do you think?
Terence.