Allow auto width for table
-
I use easy table for very small tables with just two columns. So the width of 100% is not appropriate for me.
Instead I prefer an automatic width (default of browser if no width is defined).
I would like to have the possibility to declare ‘auto’ as width. Actually this leads to an error as the value is parsed (must be % or px). And I guess that ‘auto’ is not valid for the width attribute.
Here is my solution as diff:216c216,218 < $width = (stripos($width,'%') === false) ? (int)$width.'px' : (int)$width.'%'; --- > if ($width != 'auto') { > $width = (stripos($width,'%') === false) ? (int)$width.'px' : (int)$width.'%'; > } 229c231,233 < $output .= ' width="'.$width.'" '; --- > if ($width != 'auto') { > $output .= ' width="'.$width.'" '; > }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Allow auto width for table’ is closed to new replies.