On Thu, Dec 29, 2022 at 11:06:45AM -0800, Raymond Toy wrote:
> One other thing.  Each item from headitem is left-justified for both info
> and pdf.  But it's centered in html.  For consistency, should they all be
> left-justified?  (Or maybe allow a way to control that?  It looks funny in
> html if the columns are wide, but the actual entries are narrow.)

This depends on the browser rendering of <th>.  You can use CSS to
align, with 'text-align: start;'.  There may be other <th> in Texinfo
output, so you could use something like the following to select th in
multitables:

 table.multitable th {
  text-align: start;
 }

-- 
Pat

Reply via email to