Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

HTML table border

A topic by Gaia created 9 days ago Views: 91 Replies: 2
Viewing posts 1 to 2

Hi! 

I'm trying to make my game page look as if it had 2 columns, one with text and another with an image. Unfortunately, I cannot seem to find the option to make the borders either the same color as the background or disappear completely. 

I am not very skilled with html, so any help is appreciated!

(+1)

Try this, not a very elegant solution, but should works:

<table>
<tbody>
  <tr>
    <td style="border: 1px solid transparent;">
      Left Column
    </td>
    <td style="border: 1px solid transparent;">
      Right Column
    </td>
  </tr>
</tbody>
</table>

If you want to make the table takes the full width of the page, add style="width: 100%;" to the <table>:

<table style="width: 100%;">
<tbody>
  <tr>
    <td style="border: 1px solid transparent;">
      Left Column
    </td>
    <td style="border: 1px solid transparent;">
      Right Column
    </td>
  </tr>
</tbody>
</table>
(+1)

OMG Thank you so much - it worked!