bug-texinfo
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: @multitable with prototype row has no effect in html


From: Raymond Toy
Subject: Re: @multitable with prototype row has no effect in html
Date: Mon, 2 Jan 2023 09:44:39 -0800



On Sun, Jan 1, 2023 at 10:19 AM Patrice Dumas <pertusus@free.fr> wrote:
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;
 }


Thanks, this should work.  I was just wondering if texinfo should be more consistent in the output since the PDF output has left-aligned columns, as does the info output.
--
Pat


--
Ray

reply via email to

[Prev in Thread] Current Thread [Next in Thread]