Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display none doesnt hide the <TD> 1

Status
Not open for further replies.

bean1234

Technical User
Nov 14, 2006
45
US
Hello All,

The following HTML markup doesnt hide the contenet with in the td with style="display:none" can anyone please advise why IE is behaving so..


Code:
<tr><td style="display:none">

              
               <tr class="d1" >
                   <td> 
                    
                    <a href="/AnnouncementsWebApp/MarketData/#" onclick="openPopup(650,450);return false;">FitchRatings</a>
</td> 
</tr>
</td></tr>






 
You have a <tr> nested in a <td>, but it is not nested in it's own table. <td> tags cannot contain their own table rows - they can contain their own nested table, which can contain table rows, but you have shown no nested table in your code above. Try fixing that and see if it helps.

-kaht

[small](All puppies have now found loving homes, thanks for all who showed interest)[/small]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top