We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
This is:
I expect that borders are shown and cell padding is added.
No border and padding are shown
This is part of the HTML string i'm adding to the Html::addHtml method
Html::addHtml
<table style="width: 100%; padding: 5px; border: 1px solid #000000; border-collapse: collapse;" border="1" cellpadding="5"> <tbody> <tr> <td style="width: 33.3333%;">Abc</td> <td style="width: 33.3333%;">Def</td> <td style="width: 33.3333%;">Hij</td> </tr> <tr> <td style="width: 33.3333%;">Klm</td> <td style="width: 33.3333%;">Nop</td> <td style="width: 33.3333%;">Qrs</td> </tr> <tr> <td style="width: 33.3333%;">Stt</td> <td style="width: 33.3333%;">Vvx</td> <td style="width: 33.3333%;">Xyz</td> </tr> </tbody> </table>
Strange thing with the border attribute that is set on the table:
border attribute
IF border: 1px #000000 solid will add borders as expected IF border: 1px solid #000000 - will NOT add borders at all
border: 1px #000000 solid
border: 1px solid #000000
The text was updated successfully, but these errors were encountered:
Add support for rgb(), hsl(), and any ordering of values in `bord…
rgb()
hsl()
3507d24
…er` when reading HTML (closes PHPOffice#1636)
I have a fix for this that I'll submit once #1669 is merged (see reference above for code changes).
Sorry, something went wrong.
ed41166
76a5f2f
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
This is:
Expected Behavior
I expect that borders are shown and cell padding is added.
Current Behavior
No border and padding are shown
How to Reproduce
This is part of the HTML string i'm adding to the
Html::addHtml
methodStrange thing with the
border attribute
that is set on the table:IF
border: 1px #000000 solid
will add borders as expectedIF
border: 1px solid #000000
- will NOT add borders at allContext
The text was updated successfully, but these errors were encountered: