Tagged Questions

0
votes
7answers
51 views

JQuery: How to show text insite <td> through press link inside <td>

i have code: <table id="table_id"> <tr id="tr_id"> <td id="td_id"> <p id="tresc"> text </p> <a href="#" id="link">more1</a> …
1
vote
1answer
43 views

jQuery - Append <th> Class to <td> in the Same Column

I've been searching all over the net for hours now but I still can't figure this out. <table> <tr> <th class="name">Name</th> <th …
1
vote
1answer
67 views

How to Jquery show only a particular td from this table structure?

Hi Guys, i'm a total noob when it comes to Jquery and i've been trying to learn it but as of now i still don't know how to query this one out. I have a table structure that looks like this: …
0
votes
2answers
82 views

How to set 50% height for table cells for WebKit (Chrome, Safari)

Look at this code: <html> <body> <table border="1px"> <tr> <th align="center" width="70px">Name</th> <th align="center" …
0
votes
3answers
72 views

What is the order to style a div inside of tables?

#div that holds table, table tr td.class of td now what goes here to style a div class I put inside of the td class?
0
votes
4answers
413 views

CSS: how do I create a gap between rows in a table?

Meaning making the resultant table look less like this: [===ROW===] [===ROW===] [===ROW===] [===ROW===] ... and more like this: [===ROW===] [===ROW===] [===ROW===] [===ROW===] I tried …
1
vote
2answers
90 views

Is <th> only semantically different from <td>?

Their looks are the same actually
0
votes
4answers
385 views

Display already hidden table cells in IE with CSS.

IE 7 does not display the initially hidden table cells (class="c") when class of the containing div is changed to "b", where "display:none" rule is removed. However, it should as it does for the row …
0
votes
1answer
209 views

div inside td,but td is unexpectedly expanded

<td> <div id="test">...</div> </td> <td> ..... </td> I can see from firebug that td is about 40px wider than the "test" div(width+border+margin all included),but …
-1
votes
2answers
96 views

how is td auto resized in this case?

<body> <table width="100%"> <tr> <td><div>content1 goes here</div></td> <td><div>content2 goes here</div></td> …
2
votes
5answers
154 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?