|
|||||||||||||
HTML Tricks
Miscellanious on how to code web pages |
Text Shadows
2015-10, rickatech
Elsewhere
An interesting recently new CSS features is text shadows. This is mostly for when text needs to be imposed over a busy background image to add contrast at the edge of the letters to make them more readable.
Modern HTML 2.0 CSS verse Legacy Tables
2015-05-28, rickatech
Elsewhere
Classic HTML tables are more complex for displays to render than more modern CSS / HTML 2.0 style markup. Legacy tables provide automatic content wrap width which purposely has no equivalent in HTML 2.0 CSS. That is because calculating automatic widths is very processing and data intensive, typically requiring an entire page to load before anything can be displayed - something modern HTML and CSS directives try to streamline.
There are genuine applications for using both classic and HTML 2.0 directives. As ubiquitous device display processing power continues to improve, expect CSS3 and and other next generation markup improvements to reintroduce automatic content wrap width, newspaper style text overflow, and other more powerful presentation directives.
Redirect
<HTML>
<HEAD>
<meta HTTP-EQUIV="REFRESH" content="0; url=/jargon/">
</HEAD>
</HTML>
Pre-formated printable code
<div style="float: left; white-space: pre; font-size: x-small; font-family: courier;"> ... code ... </div>
<pre><font size: -1> ... code ... </font></pre>
Pagination - stay tuned