Backtrack:  
 
showing posts tagged with 'html'
 
edited by on July 7th 2015, at 14:23

HTML5 Character Entity Reference Chart:

http://dev.w3.org/html5/html-author/charref

edited by on April 23rd 2013, at 15:00

To enable text wrapping inside a <pre> tag, enable this in CSS:

pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
 
showing posts tagged with 'html'