Row width issue

Peter_1985 2,506 Reputation points
2022-12-07T09:43:53.147+00:00

Hi,
Further to the thread like

https://learn.microsoft.com/en-us/answers/questions/932210/javascript-issue.html?childToView=1119695#comment-1119695

I added <td ></ td> to that, but the issue does persist.

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,374 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,254 questions
.NET Runtime
.NET Runtime
.NET: Microsoft Technologies based on the .NET software framework.Runtime: An environment required to run apps that aren't compiled to machine language.
1,119 questions
0 comments No comments
{count} votes

Accepted answer
  1. Lan Huang-MSFT 25,556 Reputation points Microsoft Vendor
    2022-12-08T02:29:32.363+00:00

    Hi @Peter_1985 ,
    You need to make sure that the <td> is consistent on each line. It should be noted that colspan=2 means that two <td>s are merged into one <td>, but in essence it is still two <td>s.
    You have two ways, one is to delete all colspan=2, and then ensure that the number of <td> in each row is insufficient.
    The second is to use the colspan attribute to supplement the required <td>.
    Because of the code format, I put the code in Notepad so you can check it out.268444-3.txt
    The first method:
    268464-image.png
    The second method:
    268377-image.png
    268365-image.png

    Best regards,
    Lan Huang


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


0 additional answers

Sort by: Most helpful