Arthur A. Bergamaschi
Arthur A. Bergamaschi

Reputation: 125

Something is going wrong with this CSS code

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]

http://pastebin.com/SErKf1Rf

Upvotes: 0

Views: 67

Answers (2)

Victoria Ruiz
Victoria Ruiz

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

Vyas Rao
Vyas Rao

Reputation: 498

The column-count seems to be the problem in .players. Remove them and it seems to work.

Upvotes: 0

Related Questions