Can I Have One HTML Table Header Be Over Two Table Columns? Like ...

Just browsing Stack Overflow? Help us improve your experience. Sign up for research
    1. Home
    2. Questions
    3. Tags
    4. Users
    5. Companies
    6. Labs
    7. Jobs
    8. Discussions
    9. Collectives
    10. Communities for your favorite technologies. Explore all Collectives

  1. Teams

    Ask questions, find answers and collaborate at work with Stack Overflow for Teams.

    Try Teams for free Explore Teams
  2. Teams
  3. Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams

Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

Get early access and see previews of new features.

Learn more about Labs Can I have one HTML table header be over two table columns? Like merge and center in Excel? Ask Question Asked 12 years, 10 months ago Modified 7 years, 4 months ago Viewed 69k times 30

I want to have one table header be centered over two table columns side by side. Is this possible?

Share Improve this question Follow edited Jul 11, 2017 at 8:49 Brian Tompsett - 汤莱恩's user avatar Brian Tompsett - 汤莱恩 5,87572 gold badges60 silver badges133 bronze badges asked Jan 25, 2012 at 0:41 Lizza's user avatar LizzaLizza 2,8195 gold badges41 silver badges73 bronze badges Add a comment |

4 Answers 4

Sorted by: Reset to default Highest score (default) Trending (recent votes count more) Date modified (newest first) Date created (oldest first) 58

<th colspan="2">. This .</th>

To extrapolate a bit...

<table> <thead> <tr> <th>Single Column</th> <th colspan="2">Double Column</th> </tr> </thead> <tbody> <tr> <td>Column One</td> <td>Column Two</td> <td>Column Three</td> </tr> </tbody> </table>

That should give you enough to work from.

Share Improve this answer Follow answered Jan 25, 2012 at 0:43 SpoonNZ's user avatar SpoonNZSpoonNZ 3,8291 gold badge21 silver badges25 bronze badges Add a comment | 11

If you only have 2 columns then I would suggest using <caption>. Otherwise, use colspan as suggested in other answers.

<table> <caption>This will span all columns.</caption> <tr><td>column one</td><td>column two</td></tr> </table> Share Improve this answer Follow answered Jan 25, 2012 at 0:49 Travis J's user avatar Travis JTravis J 82.2k42 gold badges211 silver badges279 bronze badges Add a comment | 5

Of course. Please refer to this page. You are looking for attribute called colspan for table headers cells.

Share Improve this answer Follow answered Jan 25, 2012 at 0:45 Andrzej Ośmiałowski's user avatar Andrzej OśmiałowskiAndrzej Ośmiałowski 1,49412 silver badges21 bronze badges Add a comment | 4

We can do it in better way.

<table border="1"> <tr> <th colspan="1" scope="colgroup">Test Heading</th> <th colspan="3" scope="colgroup">Mars</th> <th colspan="3" scope="colgroup">Venus</th> <th colspan="3" scope="colgroup">Test</th> </tr> <tr> <th rowspan="2"></th> <th scope="col">Produced</th> <th scope="col">Sold</th> <th scope="col">Sold</th> <th scope="col">Produced</th> <th scope="col">Sold</th> <th scope="col">Sold</th> <th scope="col">Test 1</th> <th scope="col">Test 2</th> <th scope="col">Test 3</th> </tr> </table>

Please visit Table Ref From w3.org if you want to know more.

Share Improve this answer Follow edited May 17, 2017 at 7:39 Manfred Radlwimmer's user avatar Manfred Radlwimmer 13.4k13 gold badges54 silver badges64 bronze badges answered May 17, 2017 at 7:12 Srikrushna's user avatar SrikrushnaSrikrushna 4,8472 gold badges43 silver badges49 bronze badges Add a comment |

Your Answer

Reminder: Answers generated by artificial intelligence tools are not allowed on Stack Overflow. Learn more

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid …

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.

Draft saved Draft discarded

Sign up or log in

Sign up using Google Sign up using Email and Password Submit

Post as a guest

Name Email

Required, but never shown

Post Your Answer Discard

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.

  • The Overflow Blog
  • Your docs are your infrastructure
  • Featured on Meta
  • More network sites to see advertising test [updated with phase 2]
  • We’re (finally!) going to the cloud!
  • Call for testers for an early access release of a Stack Overflow extension...

Linked

8 Merged Header Above a JTable Header in Java 1 Table headers inside main table header in HTML 11 How to include 2 columns under one column header in html table? 1 How can I make a HTML table with headers in one vertical column? 0 It is possible to make a vertical table with horizontal headers? 1 Create table with one header and then rows and columns below 0 Headers in table centered 0 Two table headers with multiple colspans 2 HTML: can a column span across both header and body rows? 0 Is there way to achieve inside the table header having a three table data? 0 HTML Table: Multiple header rows and column

Hot Network Questions

  • How can I reference sky photos to a star map?
  • What kind of solvent is effective for removing roofing tar from shoes?
  • Did renaissance actors learn their parts by heart?
  • Frogs on lily pads want to make a party
  • Mega Man: Powered Up
  • Can you please advise on kerning?
  • Taking the sum of predicted probabilities from logit model?
  • Path from plane
  • Is BNF grammar in TeXbook correct?
  • What is small arch between two notes and how to play it?
  • Solving Large size problems in industry: Tips and Tricks
  • Preventing resulting shapefile being added to ArcGIS Pro map by ArcPy
  • Do I need Letter of invitation to Iceland?
  • Is the A321 XLR really necessary to fly MAD-BOS?
  • Equally scaling and offsetting a 3D triangular mesh
  • T47 to BSA bottom bracket adapter - good idea?
  • How do different observers decide if they are looking at the same thing?
  • Fastest quasi-random function in 6502?
  • A novel about Earth crossing a toxic cloud of cosmic size
  • Why don't routers answer ARP requests for IP addresses they can handle even if they aren't assigned that IP address themselves?
  • Second network connection makes internet unreachable
  • What powers do police have to force people onto trains?
  • What does GB Shaw mean when he says "like the butcher's wife in the old catch" here?
  • If scent means a pleasant smell, why do we say "lovely scent" or "sweet scent"?
more hot questions Question feed Subscribe to RSS Question feed

To subscribe to this RSS feed, copy and paste this URL into your RSS reader.

lang-html

Từ khóa » Html Th Merge Columns