Row width issue

Peter_1985 2,736 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.

Developer technologies .NET .NET Runtime
Developer technologies .NET Other
Developer technologies ASP.NET Other
0 comments No comments
{count} votes

Accepted answer
  1. Lan Huang-MSFT 30,186 Reputation points Microsoft External Staff
    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

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.