Kyle
Kyle

Reputation: 67194

Table column with headers change column width

HTML viewable at jsfiddle.net (it's a lot of code to post here)

The method to change the column width escapes me, I'd like the "Produkt" column to be wider.

Upvotes: 0

Views: 4738

Answers (1)

Ben Everard
Ben Everard

Reputation: 13804

Add this attribute to your header of that cell, it should force the entire column to be at least 100px:

<th id="produkttext" style="width: 100px;">Produkt</th>

Upvotes: 1

Related Questions