Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

163
Views
JavaScript, td size always change

I am writing a simple program that includes table and td's. In the program when you press q the number one appears in a td. but when it happens the td width suddenly change. so my question is how to stop it? here is the code:

    <html>
    <body>
        <table border = "1">
            <tr>
                <td id = "td1"></td>
                <td id = "td2"></td>
            </tr>
        </table>
        <style>
            table {
                height: 400px;
                width: 800px;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
                font-size:25px;
            }
        </style>
    </head>
    <head>
        <script>
            document.addEventListener("keydown", function(e){
                if (e.key == "q") {
                    document.getElementById("td1").innerHTML = "1";
                }
            });
        </script>
    </head>
</html>

about 4 years ago · Santiago Trujillo
2 answers
Answer question

0

you can add the following property to your css definition

table-layout: fixed;

<html>
<body>
    <table border = "1">
        <tr>
            <td id = "td1"></td>
            <td id = "td2"></td>
        </tr>
    </table>
    <style>
        table {
            height: 400px;
            width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            font-size:25px;
            table-layout: fixed;
        }
    </style>
</head>
<head>
    <script>
        document.addEventListener("keydown", function(e){
            if (e.key == "q") {
                document.getElementById("td1").innerHTML = "1";
            }
        });
    </script>
</head>

about 4 years ago · Santiago Trujillo Report

0

<html>
<head>
    <table border = "1">
        <tr>
            <td id = "td1"></td>
            <td id = "td2"></td>
        </tr>
    </table>
    <style>
        table {
            height: 400px;
            width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            font-size:25px;
        }
        
        td {
          width: 50%;
          }
          
    </style>
</head>

  <body>
      <script>
          document.addEventListener("keydown", function(e){
              if (e.key == "q") {
                  document.getElementById("td1").innerHTML = "1";
              }
          });
      </script>
  </body>
  
</html>

use this code

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!