Using CSS td width absolute, position

HtmlCssHtml Table

Html Problem Overview


Please see this JSFIDDLE

td.rhead { width: 300px; }

Why doesn't the CSS width work?

<table>
<thead>
<tr>
<td class="rhead">need 300px</td>
<td colspan="7">Week #0</td>
<td colspan="7">Week #1</td>
<!-- etc..-->
</tr>
<tr>
<td class="rhead"></td>
<td>S</td><td>M</td><td>T</td><td>W</td><td>T</td><td>F</td><td>S</td>
<td>S</td><td>M</td><td>T</td><td>W</td><td>T</td><td>F</td><td>S</td>
<!-- etc... -->
</tr>
<thead>
</table>

Also, what are the effects of position:fixed, absolute etc have on td widths if any? I am looking for a reason more than a fix. I am hoping to understand how it works.

td width is not 300px as desired

Html Solutions


Solution 1 - Html

This may not be what you want to hear, but display: table-cell does not respect width and will be collapsed based on the width of the entire table. You can get around this easily just by having a display: block element inside of the table cell itself whose width you specify, e.g

<td><div style="width: 300px;">wide</div></td>

This shouldn't make much of a difference if the <table> itself is position: fixed or absolute because the position of the cells are all static relative to the table.

http://jsfiddle.net/ExplosionPIlls/Mkq8L/4/

EDIT: I can't take credit, but as the comments say you can just use min-width instead of width on the table cell instead.

Solution 2 - Html

You're better off using table-layout: fixed

Auto is the default value and with large tables can cause a bit of client side lag as the browser iterates through it to check all the sizes fit.

Fixed is far better and renders quicker to the page. The structure of the table is dependent on the tables overall width and the width of each of the columns.

Here it is applied to the original example: JSFIDDLE, You'll note that the remaining columns are crushed and overlapping their content. We can fix that with some more CSS (all I've had to do is add a class to the first TR):

    table {
		width: 100%;
		table-layout: fixed;
	}

	.header-row > td {
		width: 100px;
	}

	td.rhead {
		width: 300px
	}

Seen in action here: JSFIDDLE

Solution 3 - Html

The reason it doesn't work in the link your provided is because you are trying to display a 300px column PLUS 52 columns the span 7 columns each. Shrink the number of columns and it works. You can't fit that many on the screen.

If you want to force the columns to fit try setting:

body {min-width:4150px;}

see my jsfiddle: http://jsfiddle.net/Mkq8L/6/ @mike I can't comment yet.

Solution 4 - Html

The reason, is, because you did not specify the width of the table, and your whole bunch of td's are overflowing.

This for example, i've given the table a width of 5000px, which I thought would fit your requirements.

table{
    width:5000px;
}

It is the exact same code you provided, which I merely added in the table width.

I believe what is happening, is because your TD's are way past the default table width. Which you could see, if you pull out about 45 of your td's in each tr, (i.e. the code you provided in your question, not jsfiddle) it works exactly fine

Solution 5 - Html

Try this it work.

<table>
<thead>
<tr>
<td width="300">need 300px</td>

Solution 6 - Html

Try to use

table {
  table-layout: auto;
}

If you use Bootstrap, class table has table-layout: fixed; by default.

Solution 7 - Html

My crazy solution.)

$(document).ready(function() {
	$("td").each(function(index) { 
	var htmlText = "<div style='width:300px;'>" + $(this).text() +"</div>";
	$(this).html(htmlText);
  });
});

Solution 8 - Html

Use table-layout property and the "fixed" value on your table.

table {
   table-layout: fixed;
   width: 300px; /* your desired width */
}

After setting up the entire width of the table, you can now setup the width in % of the td's.

td:nth-child(1), td:nth-child(2) {
   width: 15%;  
}

You can learn more about in on this link: http://www.w3schools.com/cssref/pr_tab_table-layout.asp

Solution 9 - Html

If table width is for example 100%, try using a percentage width on td such as 20%.

Solution 10 - Html

Wrap content from first cell in div e.g. like that:

HTML:

<td><div class="rhead">a little space</div></td>

CSS:

.rhead {
  width: 300px;
}

Here is a jsfiddle.

Solution 11 - Html

You can also use:

.rhead {
    width:300px;
}

but this will only with with some browsers, if I remember correctly IE8 does not allow this. Over all, It is safer to just put the width="" attribute in the <td> itself.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJakeView Question on Stackoverflow
Solution 1 - HtmlExplosion PillsView Answer on Stackoverflow
Solution 2 - HtmlHugo YatesView Answer on Stackoverflow
Solution 3 - HtmlMatthew BrownView Answer on Stackoverflow
Solution 4 - HtmlHe HuiView Answer on Stackoverflow
Solution 5 - Htmlamirali shahinpourView Answer on Stackoverflow
Solution 6 - HtmlsambrmgView Answer on Stackoverflow
Solution 7 - HtmlmathewsunView Answer on Stackoverflow
Solution 8 - HtmlCyan BaltazarView Answer on Stackoverflow
Solution 9 - HtmlDally SView Answer on Stackoverflow
Solution 10 - HtmlsimhumilecoView Answer on Stackoverflow
Solution 11 - HtmlKernelCurryView Answer on Stackoverflow