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

154
Views
JavaScript, el tamaño td siempre cambia

Estoy escribiendo un programa simple que incluye tablas y td. En el programa al pulsar q aparece el número uno en una td. pero cuando sucede, el ancho td cambia repentinamente. así que mi pregunta es ¿cómo detenerlo? aquí está el código:

 <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

puede agregar la siguiente propiedad a su definición css

 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>

usa este código

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!