How to... > Text Object
You can add html to a text block by using the '</>'-button in the toolbar of the text-object, for example
<b>this is <u>bold</u> text</b>
<table border=1>
<tr><td>row 1, column 1</td><td>row 1, colum 2>
<tr><td>row 2, column 1</td><td>row 2, colum 2>
<tr><td>row 3, column 1</td><td>row 3, colum 2>
</table>
The same block with the '>'-button on...
You can add html to a text block by using the '>'-button in the toolbar of the text-object, for example
this is bold textrow 1, column 1 row 1, colum 2> row 2, column 1 row 2, colum 2> row 3, column 1 row 3, colum 2>
Notice that the name of the button isn't displayed correctly in this block. It is interpreted as HTML!
And this is the next block...
This is a test with a div...
<div style="width: 300px; height: 200px; background-color: #FE7F2A">
this is the text within the div
</div>
And the text after the div...
The button is on again.... This is a test with a div...
this is the text within the div
And the text after the div. Notice that the text after the div is suddenly centered!
To correct this you can add an extra div with a left alignment.
The button is off again.... This is a test with a div...
<div style="width: 300px; height: 200px; background-color: #FE7F2A">
this is the text within the div
</div>
<div style="text-align: left">
And the text after the div...
</div>
The button is on again.... This is a test with a div...
this is the text within the div
And the text after the div...
And a normal block