Merge pull request #25 from alexgann/patch-2
Add cell indent to html rendering
This commit is contained in:
commit
18920d60c7
|
@ -782,6 +782,7 @@ class PHPExcel_Writer_HTML implements PHPExcel_Writer_IWriter {
|
||||||
$css['vertical-align'] = $this->_mapVAlign($pStyle->getVertical());
|
$css['vertical-align'] = $this->_mapVAlign($pStyle->getVertical());
|
||||||
if ($textAlign = $this->_mapHAlign($pStyle->getHorizontal())) {
|
if ($textAlign = $this->_mapHAlign($pStyle->getHorizontal())) {
|
||||||
$css['text-align'] = $textAlign;
|
$css['text-align'] = $textAlign;
|
||||||
|
if(in_array($textAlign,array('left','right'))) $css['padding-'.$textAlign] = (string)((int)$pStyle->getIndent() * 9).'px';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return
|
// Return
|
||||||
|
|
Loading…
Reference in New Issue