Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- HTML Reader : Support for `font-variant: small-caps` by @cambraca in #2117
- Improved TextDirection for styling a cell by @terryzwt in #2429
- Word2007 Reader : Added option to disable loading images by @aelliott1485 in #2450
- HTML Writer : Added border-spacing to default styles for table by @kernusr in #2451

### Bug fixes

- Fixed wrong mimetype for docx files by @gamerlv in #2416
Expand Down
1 change: 1 addition & 0 deletions src/PhpWord/Writer/HTML/Part/Head.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ private function writeStyles()
'table' => [
'border' => '1px solid black',
'border-spacing' => '0px',
'border-collapse' => 'collapse',
'width ' => '100%',
],
'td' => [
Expand Down