I am using DIV for layout my .aspx page in order to be WCAG 2.0 Compliant as below:
<div style="display: table;">
<div style="display: table-row;">
<div style="display: table-cell;">Hello</div>
<div style="display: table-cell;">World</div>
</div>
This is working properly in all the browser but when I am converting it to Word instead of being displayed in horizontal it will be displayed in vertical format.
How can I resolve this issue?
Thanks!