Q&A for How to Create a Table in HTML

Return to Full Article

Search
Add New Question
  • Question
    How do I put a border on the table?
    Community Answer
    You can go into the css for 'table' and change the border. It might look something like this: table { border: 1px solid #fff; }
  • Question
    How do I insert pictures into the table?
    Community Answer
    You can do that by adding a tag where the text would usually be.
  • Question
    What will the table look when it is done?
    Community Answer
    It will look like a simple collection of boxes with black outlines with the text inside, much like a spreadsheet.
  • Question
    Why do I need to learn CSS?
    Isaac
    Community Answer
    You do not need to, but if you do not you cannot color your web page, and that means it will look very basic/rudimentary.
  • Question
    How can I merge cells together?
    Kaustubh Maladkar
    Community Answer
    Use the span attribute on the td tag. It will then span the number of cells specified by you.
Ask a Question

      Return to Full Article