I see you used
caption in your CSS. How have you found support for that across devices?
I still include my captions in a separate <div>/<p>:
Code:
</table>
<div class="caption">
<p class="caption">Figure 1.1. This is an example.</p>
</div>
Code:
div.caption {
margin-bottom: 1em;
}
p.caption {
text-align: center;
text-indent: 0;
}