Break text by word for footer element - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Footer

Description

Break text by word for footer element

Demo Code

ResultView the demo in separate window

<html lang="en">
 <head> 
  <style>
footer {<!--from w w  w .  jav  a2 s.  c om-->
   width:221px;
   word-wrap:break-word
}
</style> 
 </head> 
 <body translate="no"> 
  <footer>
    2004-2015 Delta Systems, Inc. All Rights Reserved. 
  </footer>  
 </body>
</html>

Related Tutorials