The css-tables tag has no wiki summary.
4
votes
2answers
139 views
Table won't overflow
I have a table with a variable number of columns that I want to place in a fixed width div.
I want the table columns to have a fixed width and the table to overflow horizontally inside the div if it ...
2
votes
3answers
113 views
CSS table default padding or margin
today it's my first time i playing around with tables
and i have noticing that the table and tr and td tags have a little space between them
like 1 px or so
so here is my problem :
there is my code ...
2
votes
2answers
262 views
Help me style this day schedule table
UPDATE:
I have updated my HTML. Now it works in all browsers except IE7. Any ideas? Check out my updated HTML and jsFiddle link.
Alright. I have a table which shows my company's cars and time ...
2
votes
2answers
2k views
CSS Equivalent of Table Rowspan with Fluid Height
I'm trying to accomplish the following using CSS:
<table border="1" width="300px">
<tr>
<td rowspan="2">This row should equal the height (no fixed-height allowed) of the 2 rows ...
1
vote
3answers
134 views
Expanding table row with jQuery on a css div table
I need to build a list of people with basic informations on a table, like name, and when one clicks the row it will expend details between the clicked row and the next one.
For a more visual example ...
1
vote
2answers
186 views
zebra (even/odd) rows css in <ul> and hyperlink issue
I have this little select code which should provide a 'zebra' even/odd rows. I don't understand how to change the css for that:
1, every other that will be listed (and not every second) should have ...
1
vote
2answers
106 views
Highlight a table column + colspan problem
jsfiddle link: http://jsfiddle.net/KMzjp/
So I am trying to highlight a table column based on a table header th element (there are three th elements so there should be three columns and the middle ...
1
vote
3answers
642 views
How to make HTML table cells expand horizontally beyond end of page?
I have a table with many columns. The table is wider than the page, and so it scrolls. The default behaviour of tables seems to be to make the width of each column as small as possible, and allow ...
1
vote
2answers
1k views
CSS3 border-radius on display:table-row element
This is my layout:
<div class="divContainer">
<div class="item">
<div class="itemHeader"></div>
<div class="itemBody"><div>
...
1
vote
2answers
241 views
HTML and CSS - Vertical align divs
I have a div on the left hand side, and text on the right hand side. The text can be either 2 or 3 lines long, and I want the left hand div to be vertically centered to that text. I've looked online ...
0
votes
3answers
73 views
Intelligent HTML Table Column Widths
This is what my table currently looks like:
I want to reduce the gap between the two buttons and move the buttons more towards the text content. However I still want the table to adjust if I enter ...
0
votes
4answers
79 views
css display:table not displaying the border
<html>
<style type="text/css">
.table { display: table;}
.tablerow { display: table-row; border:1px solid black;}
.tablecell { display: table-cell; }
</style>
<div ...
0
votes
2answers
155 views
css display:table vs html <table>, Which is more appropriate to use?
I am a total newbie in programming and I still have problems understanding some very basic concepts because I do self study. When I do web layout I am using html <table> but I read in the ...
0
votes
1answer
355 views
Override and disable Django admin CSS .dashboard .module table tr
I have some custom fields/modules in my Django admin template "app_index.html". Looking like this:
<tr>
<th>Element 1</th>
<th>Element 2</th>
</tr>
In ...
0
votes
2answers
67 views
display:table killing me in IE
I want to create horizontally-aligned table cells like the ones on this page.
I've followed the instructions, and I've even copied the css and markup verbatim, but no matter what I do IE 8 renders my ...
0
votes
6answers
1k views
css display:table first column too wide
I have a css table setup like this:
<div class='table'>
<div>
<span>name</span>
<span>details</span>
</div>
</div>
The css for the table is:
...