Formatting within tables

Hello everyone.
#1


I face a little issue.
#2
https://tabs.mowizard23.repl.co/
My goal is to align the content correctly in the columns like in 1.
This is the code

<!doctype html>
<html>
  <head>
    <title>Table wit Colgroup</title>
  </head>
  <body>
    <center align = "center">
    <table border ="3" colspan ="5" cellspacing = "10">
      <tr>
      <th>Location</th>
      <th>Description</th>
      <th>Price</th>
      <th>Zip code</th>
      <th>Contact</th>
      <th>Availability</th>
      </tr>
      <tr>
        <td>Florida</td>
        <td>15 Property portfolio near FL State University</td>
        <td>$2,603,120</td>
        <td>32303 & others</td>
        <td>646-318-6442</td>
        <td><input type ="checkbox" size = ""></td>
      </tr>
      <tr>
        <td>Livingston,NJ</td>
        <td>Vacant 200,000 sqft vacant building</td>
        <td>$25,750,000</td>
        <td>xxx</td>
        <td> -------</td>
        <td><input type ="checkbox"></td>
      </tr>
      <tr>
        <td>Central FL,55 mins South of Orlando</td>
        <td>12 space Mobile Home park</td>
        <td>$460,000 + 6% fee</td>
        <td>33823</td>
        <td>-------</td>
        <td><input type ="checkbox"></td>
      </tr>
    </table>
    </center>
  </body>
</html>

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Thank you.
I don’t know where to find the User Manual for this IDE.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.