Questions? Hit me up: @Tayokoart
Last active
December 27, 2015 19:59
-
-
Save miguel-perez/7381672 to your computer and use it in GitHub Desktop.
Breaking up long pieces of text with html and css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>Joyería Superextraordi<wbr/>narísimamente Bonitas</p> | |
<p>Joyería Superextraordi­narísimamente Bonitas</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.class { | |
-webkit-hyphens: auto; | |
-moz-hyphens: auto; | |
-ms-hyphens: auto; | |
hyphens: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment