<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="xml.css" type="text/css"?>

<document>

<h1>Table Reflow Test</h1>

<para>To achieve the effect of a scrolling table we have wrapped the table itself inside a container, giving the latter the
following declarations:</para>

<pre>
#wrapper {
width: 600px;
border: 2px outset gray;
height: 50px;
overflow: auto;
overflow-x: hidden;
}
</pre>

<container id="wrapper">
<table id="no">
<row>
<cell>1</cell>
<cell>2</cell>
<cell>3</cell>
</row>
<row>
<cell>1.1</cell>
<cell>2.1</cell>
<cell>3.1</cell>
</row>
<row>
<cell>1.2</cell>
<cell>2.2</cell>
<cell>3.2</cell>
</row>
<row>
<cell>1.3</cell>
<cell>2.3</cell>
<cell>3.3</cell>
</row>
<row id="last">
<cell>1.4</cell>
<cell>2.4</cell>
<cell>3.4</cell>
</row>
</table>
</container>

</document>