Edit is stripping out table <caption> element
-
When the following code is entered in the HTML window and saved, for some reason the <caption> element is stripped out.
<table> <caption>text</caption> <tr><td>text</td><td>text</td></tr> <tr><td>text</td><td>text</td></tr> </table>
after saving it looks like this
<table> <tr><td>text</td><td>text</td></tr> <tr><td>text</td><td>text</td></tr> </table>
How do I make the <caption> stick?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Edit is stripping out table <caption> element’ is closed to new replies.