Edit in JSFiddle

<!-- Перенос строки -->
<p>600 W. Chicago Ave.<br>
Chicago, IL 60654<br>
USA</p>

<!-- Перенос слова -->
<p>http://shay<wbr>howe.com</p>
body {
  color: #666;
  font: 14px/24px "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", Sans-Serif;
}
p {
  margin: 0 0 24px 0;
}
p:last-of-type {
  margin: 0;
}