Tagged Questions
The td tag has no wiki summary.
17
votes
4answers
214 views
What is the origin of the HTML tag name: “<TD>”
I know it's a little off-topic, but what is the origin of the tag name "TD" used in HTML table markup?
"TH" seems like it should stand for "Table Header" and "TR" for "Table Row", but what about ...
11
votes
3answers
3k views
Using Position Relative/Absolute within a TD?
I have the following code:
<td style="position: relative; min-height: 60px; vertical-align: top;">
Contents of table cell, variable height, could be more than 60px;
<div ...
5
votes
2answers
70 views
Stop html table cell breaking on minus sign and instead on decimal point?
Is it possible to stop a TD breaking on the minus sign of a value and instead make it break on the decimal point?
I have a table displaying decimal amounts from a database. Some of the amounts are ...
5
votes
2answers
144 views
why does styling TDs in jquery make the markup insane?
I'm trying to add a simple border to all the table cells in a table.
It's important that my markup remains simple for some other functionality i have in place to work.
Lets say I style tds like ...
5
votes
1answer
898 views
Draggable <td> content using jQuery
I would like to use jQuery and its drag-and-drop function, such as:
http://jqueryui.com/demos/draggable/
In my case, I would like to enable drag-and-droping on content of an HTML table. For ...
5
votes
2answers
5k views
overflow:scroll; in <td>
Why does the CSS property overflow:scroll; not work in <td>, while overflow:hidden; works well?
<table border="1" style="table-layout:fixed; width:100px">
<tr>
<td ...
4
votes
3answers
40 views
apply values of inputs to all its td innerhtml
is it possible to change the innerhtml of all the td when it has the input inside, i mean to take the input's value and apply it to it's td innerhtml, for example, here's the table and its input ...
3
votes
3answers
67 views
HTML Table width in percentage, table rows separated equaly
I have a very basic question, but a question that I have been asking myself for a while.
When I create a table in html, a table with a width of 100%, if I want all the cells (tds) to be divided in ...
2
votes
3answers
102 views
IE not desired new line on TD dynamically added with Javascript
I wrote a JS script to dynamically add rows on a table. On a select element change, this script reads an HTML div set to display:none and clone this template with CloneNode(True) method. ...
2
votes
3answers
46 views
value of td using jquery but from table inside table
I want to get td value of element inside td in table with class t2
how can i achieve it??
i tried this but didnt help
var test = $(.lv1 tr:nth-child(" + row2 + ")").children("td:last").children(".lv2 ...
2
votes
1answer
44 views
Stretching table cell text to both sides
I have a html table cell with the following data:
<td>0/12 0%</td>
which shows like this:
http://img202.imageshack.us/img202/6008/captureuhe.jpg
what i want to do is move the % number ...
2
votes
3answers
69 views
focus a table cell on click - jquery
I have an HTML table,
when any cell is clicked, I want to highlight that cell using css, until another cell is clicked
I thought, I will set focus for that cell and set css for focus
but its not ...
2
votes
1answer
37 views
Top property of relative positioned element in TD does not have any effect
I've noticed this issue while trying to vertically align a floating(and relative positioned ) element in a TD.
I'm thinking it might have something to do with the default TD's vertical-align:middle ...
2
votes
2answers
81 views
TD height issues in the table
I am having a table with the below structure -
**HTML:**
<table>
<tr class="table_row row_over">
<td><input type="checkbox" name="check_data_1" ...
2
votes
2answers
59 views
HTML - making a td contract to only it's padding and content
I've got a table arranged like this:
<table style="width:100%" class="ui-widget-content">
<tr>
<td rowspan="2" style="width:100px;padding:10px">
</td>
...
2
votes
2answers
73 views
Why isn't background-image working on a td?
I want a background for a td. Here is my code:
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr colspan="2">
<td>
<img src="Images/1.png" width="567" ...
2
votes
2answers
283 views
Chrome TD height
I've got a problem on beta.ovoweb.net ; the td (below the tabs, little grey line) isn't visible in Chrome. It is in Firefox. How can I fix this Chrome problem?
2
votes
1answer
225 views
Does jQuery offset(); work on td cells?
I'm trying to have a tool tip pop-up just slightly to the left of a couple of td cells in a table:
$('table.seafood td.prod4').hover(function() {
var offset = $(this).offset();
...
2
votes
2answers
715 views
Webkit (Safari and Chrome) zero width td with only bottom border is displayed as 1px wide
My problem is simple to explain but Webkit hard to resolve : ). Please read below:
I have a simple table with a single row and two cells but still the table is displayed differently in Safari/Chrome ...
2
votes
2answers
327 views
Table cell height longer than content by default in Firefox
Just so you know, I'm kinda new to html and css and I'm sorry if the question is stupid, but I have a problem that seems simple, and yet I've been searching for a solution for hours and couldn't find ...
2
votes
6answers
830 views
jQuery hover effect over table
I am new to jQuery and I am trying to make a hover effect on my table but I don't know how.
I would like to make only the text red and then how to remove the red color again when the focus has been ...
2
votes
2answers
217 views
Randomize table cells
I know its sounds bit wired, but is there any way to randomize table content? precisely cells.
The purpose of this - i have a table generated from several xml's and each xml consists at least 5 items. ...
2
votes
3answers
102 views
How Do I Make a “Trickless”, Cross-Platform CSS-Based Same Column Height?
I tried this with DIVs. The problem occurs in both. I can't get the right border to be equal heights as the longest DIV. And I need this to work across the current desktop browsers from the days of ...
2
votes
1answer
308 views
<col class=“slick”> does not apply class to the columns of a table
My understanding of col is that it may be used to indicate a class for all the elements in a table's column. This doesn't seem to be working for me though. I can apply the class to individual td's, ...
2
votes
1answer
126 views
Firefox displays 3 columns in a table, IE8 only 2
Would love some help here... firefox displays the last column in the table (an image they click on to edit their email address, it's a link), and IE8 displays nothing for the last column (doesn't even ...
2
votes
2answers
664 views
Dynamically expanding the width of a TD
Is there a way for expanding the width of a TD in the table based on the width of the next TD?
The asp:Panel is going to be hidden or displayed based on some condition in the code behind.
I'm ...
2
votes
5answers
287 views
why TDs display within a TR displays in the same line?
TD is a block element,
but displays like inline,say,several TDs within a TR display in the same line,
why?
1
vote
2answers
54 views
<TD> Cell not showing background images
So, I have a code for a table and I have three cells in it. I want each cell to have different background images. But the problem is, only the first cell is showing an image! Please help! My code:
I ...
1
vote
1answer
37 views
Get value from td when button is clicked.
This is a part of my JSP code:
<tr style="background-color: #F0F0F0; ">
<td class="leavehistory" style="width: 6%; padding: 7px;"><%=i++%></td>
<td ...
1
vote
4answers
30 views
TD element inner element height
I have problem that I have element inside TD element and when I set element height to 100% it won't fill whole TD cell in height. Is it possible to fill whole whole TD height in inner element if its ...
1
vote
4answers
52 views
Add another element using GetElementById?
Let's say that this' an HTML code:
<tr>
<td>Wusool</td>
<td id="yasel">
15:12
</td>
</tr>
and I want to change it into this html code:
...
1
vote
2answers
90 views
jQuery next() td across table rows
I have designed a custom calendar using html and jQuery. I want to highlight a range of k days (say 2 days) onhover on the start date. Available dates in my calendar are td of class 'available'. This ...
1
vote
2answers
41 views
how can i insert text at the end of a <TD> in a html table cell
i have a table and in a cell i have something like this . .
<td class="quantity">
[a bunch of spans and divs and all stuff]
</td>
i want to figure out in jquery how i ...
1
vote
1answer
35 views
Td height behaviour on different browsers
Could someone take a look a the page generated by the following code, and tell me why the space between trs is not the same (Chrome > IE > Firefox) ? And how to resolve it (Already tried CSS Reset) ?
...
1
vote
7answers
75 views
create table with many td
I would like to make this table layout:
I have:
<table border="1">
<tr> <td colspan="3">aaa</td> <td colspan="3">aa</td> </tr>
<tr> ...
1
vote
3answers
81 views
html table td's and tr's disappearing
I'm going though something quite weird. I was working on a chat system with the rows and stuff based on tables, but the formatting kept messing up. I wondered why until I looked at the part of the ...
1
vote
5answers
89 views
<div> into a <tr>: is it correct?
Is this code correct?
<table>
<tr>
<td>...</td>
</tr>
<tr>
<div>...</div>
</tr>
<tr>
...
1
vote
3answers
126 views
How to addClass to the next td on link hover in jQuery?
I have 6 tds like this:
<td><a href="#">link</a></td>
<td>Some text here</td>
<td><a href="#">link</a></td>
<td>Some other text ...
1
vote
1answer
86 views
hide td with jquery based on its contents
i need to hide a TD which contains the contents "Email Address". This is because its generated via the code and i dont have the source code.
Below is the generated code:
<div ...
1
vote
4answers
182 views
Hiding a <td> in a <tr> with CSS
I'm new to designing in CSS. I have a requirement in which I have to hide a td element in a tr which has 2 tds
here is the HTML code
<div class="ms-globalnavicon">
<table ...
1
vote
2answers
59 views
How to be able to show Table TD's without text in them
My Question:
How can i leave a Table its TD without text, without making it disappear.
Kind Regards,
Ixecube
I use this HTML code:
<div id="push_down"></div>
<div ...
1
vote
4answers
82 views
Issue with HTML <table> widths
I have a with 3 columns as;
<td width="120">Some content</td>
<td width="150">Some content</td>
<td width="100%">Some content</td>
Now the 3rd column ise set to ...
1
vote
2answers
186 views
How do I sort my table and keep alternating background colors while sorting using jquery?
I am having a problem with my table rows background colors once I start sorting columns. When my document loads the code is runs like this:
$('tbody tr:even').css('background-color','#F1F1F1');
...
1
vote
4answers
128 views
How do I make this table using <table>, <tr>, <td> and <div> tags?
I want to make the following table, but I'm having a bit of difficulty with figuring out which elements to use when. At the moment, this table has been implemented using table tags with the first row ...
1
vote
2answers
147 views
Fixing a td's width
I've got a div in a td. The width of the content in the div is variable. When I click on the div, I change the div's position attribute from static to absolute. The td loses its width when I change ...
1
vote
1answer
47 views
CSS Why is this tablecell not left aligned?
I'm attempting to create a table with the first cell left justified, and all the other cells centered.
I am able to do this, but thought I'd use a different CSS technique, and it's got me stumped.
...
1
vote
3answers
144 views
How to select a td that has class “foo”?
I'm using HtmlAgilityPack and I'd like to select the value from inside the td with class title. I need the value Battlefield 3 which is inside the <a> tag.
I've tried the following, just to ...
1
vote
1answer
233 views
Traversing hidden cols in html table
Maybe this question is so easy... I understand html, css, the dom and javascript pretty good, but I'm having a very tough time while trying to get jQuery to work for me. Let's say I have the following ...
1
vote
1answer
133 views
CSS to prevent an inline item from increasing parent items size?
I have a <span> element inside a <td> cell. I'm trying to figure out what CSS rules to use to force the <span> content to wrap to a new line instead of causing the <td> item to ...
1
vote
2answers
307 views
jquery & php color every other row
Hello i want to make every other colored on my table here.
i have think about some jquery but i dont know what is best practice.. i hope some one can help me :)
<table border="0" width="100%" ...