Jani Soderhall wrote:
...
If somebody is tempted to try other features, then feel free to play around in this thread, so that we can all learn what works and what doesn't.
...
Okay, let's try:<p>A new paragraph<br><i>Some italics</i>, followed by a <b>bold</b> break.<br><u>Some underlined text</u> immediately after the break.</p>
<center>
<table width='50%' bgcolor='red'>
<tr>
<td>A red table stuck in the middle of the page</td>
</tr>
</table>
</center>
<table bgcolor='white' cellpadding='3'>
<tr>
<td width='30%' bgcolor='beige'><font size='1'>This tiny font brought to you by the font tag. On the right is some C# 2.0 source (love those iterators) from the new book</font>
</td>
<td bgcolor=#ffcc00>
<pre>
class Racers: IEnumerable<string>
{
string [] _grid = {"Mickey", "Richy", "Tiger"};
public IEnumerator<string> GetEnumerator()
{
foreach(string racer in _grid)
yield racer;
}
}
</pre>
</td>
</table>
Odd things:
End of text input line is the same as a break, so end of line + a break tag is actually two breaks.
The more modern <br/> syntax for breaks doesn't work.
BTW, the font tag is deprecated, and tables are <b><i>so</i></b> fifteen minutes ago.
Other than that, I predict a series of completely unreadable posts from me as I show off my lack of aptitude in the presentation layer.