Jump to content

Space inbetween tables in HTML?

Go to solution Solved by JamieF,

Bump...

 

The problem is with the <ul> tag. You didn't put them inside the table column.

<ul><td><li><p>example text goes here</p></li></td></ul>

^ was your code.

<td><ul><li><p>example text</p></li></ul></td>

^ Should work.

 

I'm sure somebody can give a full explanation to why it didn't work :P

 

Edit: also on this line

 

<td><img src="images/header.png"/><td>

The / should be in the td tag not the image one.

Hi,

So I created a site in HTML for my Christmas List (kinda sad I know), and between 2 of the 3 tables is an annoying gap.

Here's the gap:http://puu.sh/aV5Ot/d36a124c03.jpg

 

if you like, I'll post the code for troubleshooting.

Thanks :)

Link to comment
https://linustechtips.com/topic/198724-space-inbetween-tables-in-html/
Share on other sites

Link to post
Share on other sites

Bump...

 

The problem is with the <ul> tag. You didn't put them inside the table column.

<ul><td><li><p>example text goes here</p></li></td></ul>

^ was your code.

<td><ul><li><p>example text</p></li></ul></td>

^ Should work.

 

I'm sure somebody can give a full explanation to why it didn't work :P

 

Edit: also on this line

 

<td><img src="images/header.png"/><td>

The / should be in the td tag not the image one.

Link to post
Share on other sites

The problem is with the <ul> tag. You didn't put them inside the table column.

<ul><td><li><p>example text goes here</p></li></td></ul>
^ was your code.
<td><ul><li><p>example text</p></li></ul></td>
^ Should work.

 

I'm sure somebody can give a full explanation to why it didn't work :P

 

Edit: also on this line

 

<td><img src="images/header.png"/><td>
The / should be in the td tag not the image one.
I'll try that thanks :)
Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×