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

215
Views
extra cell in HTML table

I am trying to print start and end under execution, but I get an extra cell beside End. I use:

<table style="float: center;border:2px;font-size:20px;color:white;border-collapse: collapse;border-spacing: 3;width: 25%;"> <tr><td> PC </td> <td> INSTRUCTION </td> <td> ISSUED </td> <td colspan="2"><table style="font-size:20px;color:white;border-collapse: collapse;border-spacing: 3;width: 25%;"><tr><td>EXECUTION</td></tr></table><table style="font-size:20px;color:white;border-collapse: collapse;width: 25%;"><tr><td>START</td><td>END</td></tr></table> <td> WRITTEN </td></tr>

How can I remove this extra cell? how can I remove the small cell beside END?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Your "extra cell" is the space between the end of the cell with contents "END" and the parent cell containing your embedded tables. For your purpose, instead of embedding one table inside another you should use rowspan and colspan.

body {
    background-color: black;
}
table,
tr,
td {
    border-color: white;
    border-style: solid;
    border-width: 2px;
}
table {
    border-collapse: collapse;
    border-spacing: 3;
    color: white;
    float: center;
    font-size: 20px;
    text-transform: uppercase;
    width: 25%;
}
<table>
    <tr>
        <td rowspan="2">PC</td>
        <td rowspan="2">Instructions</td>
        <td rowspan="2">Isused</td>
        <td colspan="2">Execution</td>
        <td rowspan="2">Written</td>
    </tr>
    <tr>
        <td>Start</td>
        <td>End</td>
    </tr>
</table>

about 4 years ago · Juan Pablo Isaza 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!