Reputation: 125
I'm making a recent VIP list for a Minecraft server that I work and it seems good on Dreamweaver: [check the pastebin's link]
But when I check it on the website, I got this buggy thing: [check the pastebin's link]
Why is this happening? My code: [check the pastebin's link]
Upvotes: 0
Views: 67
Reputation: 5013
The cause is:
.players {
-moz-column-count: 8;
-webkit-column-count: 8;
column-count: 8;
}
Remove all 3 column-count
lines, and the white er... thing disappears. I'm not sure why you're using column count along with a table anyway.
Upvotes: 1
Reputation: 498
The column-count seems to be the problem in .players. Remove them and it seems to work.
Upvotes: 0