Slasher
Slasher

Reputation: 618

Using no-wrap whit fixed width CSS

I have to use no-wrap, but I have fixed width.

th, td {
    padding: 7px;
    border-style: dotted;
    border-width: 2px;
    border-collapse: collapse;
    border-color: #00008b;
}

table {
    border-collapse: collapse;
}

tbody tr:nth-child(even) {
    background-color: #deeff5;
    }

tbody tr:nth-child(odd) {
    background-color: #add8e6;
    }

White space problem can't just be ignored.

Upvotes: 0

Views: 236

Answers (1)

3rdthemagical
3rdthemagical

Reputation: 5350

Do you want columns to fit their content? Add to your css:

td, th {
    width: 1%;
}

Upvotes: 1

Related Questions