The Wayback Machine - https://web.archive.org/web/20201127045506/https://github.com/litehtml/litehtml/issues/135
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Table <caption> tag is not supported #135

Open
lexxmark opened this issue Jun 17, 2020 · 0 comments
Open

Table <caption> tag is not supported #135

lexxmark opened this issue Jun 17, 2020 · 0 comments

Comments

@lexxmark
Copy link
Contributor

@lexxmark lexxmark commented Jun 17, 2020

Tried this html:

Table
<style>
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
th, td {
  padding: 5px;
  text-align: left;
}
</style>
<table>
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$50</td>
  </tr>
</table>

and got this:
image

"Monthly savings" caption is missing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
1 participant
You can’t perform that action at this time.