Top "Css-tables" questions

Use this tag instead of just [css] for questions about styling HTML <table> elements with CSS, or about using the CSS display:table property declaration to define an element's layout to mimic that of an HTML <table>.

overflow:scroll; in <td>

Why does the CSS property overflow:scroll; not work in <td>, while overflow:hidden; works well? <table …

html css scroll html-table css-tables
How do I make a table scrollable

Does anyone know a vanilla way of making the body of a table scrollable using only html and css? The …

html css css-tables
Is there a way to set the text alignment of entire column in a table?

Is there a simple way to set the text alignment of all cells in the second column to right? Or …

html css firefox alignment css-tables
CSS making two divs equal height with display table

In the following HTML, the div .left and .right have different heights. Is it possible to make both divs same …

html css css-tables
Specifying a fixed column width in jQuery Datatables

I'm trying to specify a fixed width for a few columns in a jQuery datatable. I've attempted to accomplish this …

datatables html-table jquery-datatables css-tables
Table cells fixed height regardless the content of the cell

I have a dynamic table that I generate after getting some inputs from the user to present some tabular data. …

css cell css-tables
How to apply text-align left in the first column and text-align right in the others

I have a Table to style, how can I apply text-align:left; just for the first column and text-align:right; …

css css-tables
Can you use display: table-cell and have a fixed width/height?

I have the following: CSS: .photo { overflow: hidden; display: table-cell; vertical-align: middle; text-align: center; width: 100px; height: 100px; } HAML .photo %…

html css css-tables
IE: nth-child() using odd/even isn't working

My table (that works perfectly on Chrome, FireFox and Opera) is not displaying correctly on Internet Explorer. The background remains …

css internet-explorer css-selectors css-tables
Keeping text at center bottom in a cell of table

I want to place text at center and at the bottom of the cell in table. How can I do …

html css css-tables