I am currently utilizing Twitter Bootstrap.
<div class="container">
<div class="row-fluid">
<h1>VeryLongWordHere</h1>
</div>
</div>
When viewed on mobile screens, the text becomes difficult to read. This leaves me with a couple of solutions:
- Adjust the text size to reduce when the width reaches a certain point (not sure how to do this though)
- Allow the text to span over multiple lines by using
<span>
tags for each segment
Unfortunately, I'm unsure of how to implement either of these options...