我正在尝试使用HTML和Javascript构建自定义日历,您可以将任务从一天拖放到另一天。我想将第一列和最后两列作为固定宽度,并使剩余的列(星期一到星期五)流畅,以便表格总是填满其父级的100%。
我遇到的问题是流体TD根据其中的内容自动调整大小,这意味着当我将任务从一天拖到另一天时,列宽会调整大小。我希望周一到周五的大小完全相同,无论内容如何,并且没有设置文本溢出:隐藏; (因为任务总是需要可见)
即。我希望灰色列固定宽度,红色列流动但彼此均匀,无论其中的内容如何。
编辑:我正在使用jQuery进行拖放功能,因此JavaScript解决方案也可以(尽管不是更好)。
HTML:
<table>
<tr>
<th class="row_header">Row Header</th>
<th class="fluid">Mon</th>
<th class="fluid">Tue</th>
<th class="fluid">Wed</th>
<th class="fluid">Thurs</th>
<th class="fluid">Fri</th>
<th class="weekend">Sat</th>
<th class="weekend">Sun</th>
</tr>
<tr>
<td>Before Lunch</td>
<td>This col will be wider than the others because it has lots of content...</td>
<td></td>
<td></td>
<td></td>
<td>But I would really like them to always be the same size!</td>
<td></td>
<td></td>
</tr>
</table>
CSS:
table {
width: 100%;
}
td, th {
border:1px solid black;
}
th {
font-weight:bold;
background:red;
}
.row_header {
width:50px;
background:#ccc;
}
.weekend {
width:100px;
background:#ccc;
}
.fluid {
???
}
答案 0 :(得分:10)
丹尼,
我认为这就是你在寻找的东西。
在此处http://jsfiddle.net/T6YNK/22/
在Chrome中检查。
<强>代码强>
<table>
<tr>
<th class="row_header">Row Header</th>
<th class="fluid">Mon</th>
<th class="fluid">Tue</th>
<th class="fluid">Wed</th>
<th class="fluid">Thurs</th>
<th class="fluid">Fri</th>
<th class="weekend">Sat</th>
<th class="weekend">Sun</th>
</tr>
<tr>
<td>Before Lunch</td>
<td>This col will be wider than the others because it has lots of content...</td>
<td></td>
<td></td>
<td></td>
<td>But I would really like them to always be the same size!</td>
<td> </td>
<td> </td>
</tr>
</table>
<style type="text/css">
table {
width: 100%;
}
td, th {
border:1px solid black;
}
th {
font-weight:bold;
background:red;
}
.row_header {
width:50px;
background:#ccc;
}
.weekend {
width:100px;
background:#ccc;
}
td,
th {
overflow:hidden;
}
.fluid {
}
.weekend,
.row_header{
width:50px !important;
}
table{
border: 1px solid black;
table-layout: fixed;
width:100%;
}
</style>
答案 1 :(得分:2)
使用jQuery(可能也可以使用常规JS,但我更喜欢这种工作):
(注意:我给表提供了一个ID,因此选择起来更容易,没有它就可以完成修改)
$(function() {
var $my_table = $("#my_table")
,current_width = $my_table.width()
,fluid_columns = $("table .fluid")
,spread_width = (current_width - 150) / fluid_columns.length;
fluid_columns.width(spread_width);
$(window).on("resize", function() {
current_width = $my_table.width();
spread_width = (current_width - 150) / fluid_columns.length;
fluid_columns.width(spread_width);
})
});
答案 2 :(得分:1)
你能做到:
.fluid {
width:10%;
}
答案 3 :(得分:1)
仅使用CSS怎么样?