CSS Question |
CSS Question |
Mar 20 2009, 04:37 PM
Post
#1
|
|
|
D.J. Illtactics ![]() ![]() ![]() Group: Member Posts: 57 Joined: May 2006 Member No: 400,047 |
Well my issue is lack of knowledge within a certain part of my coding. I ve had trouble for the past couple of days with a myspace page i have been designing and have yet come up with a solution.
Problem: CODE table td table tr td.text table {visibility : hidden;}table td table tr td.text table table, table td table tr td.text table table td.text {visibility : visible;}table table table table, table table table table td.text, td.text td.text table {display : none; Not sure what this part of the coding is called but i would like to know more about it. Can anyone point me in the right direction to figure out the basics of this part of the coding? Or like CODE "table table table table" or "td table tr table" What do these sequence of tables and td tr's mean? This certain part just really confuses me... Any help is appreciated...Thanks everyone.... |
|
|
|
![]() |
Mar 20 2009, 05:05 PM
Post
#2
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
when you see a few HTML elements in a row in a style sheet, it's editing nested items. in your table table table table { } example, you're editing all tables that are nested within three other tables, like so:
CODE <table> something like that will also be editing table table table table table { }, so if you don't want that to happen, you'll have to add different properties for tables nested within four tables.<tr> <td> <table> <tr> <td> <table> <tr> <td> <table> This is the area that's being edited </table> </td> </tr> <tr> <td> <table> This is the area that's being edited </table> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> say you come across a CSS code, something like div a span { }. something like that would be editing all <span> tags that are nested within <a> tags within <div> elements: CODE <div>
<a href="URL"><span>This is being edited</span></a> </div> |
|
|
|
Mar 20 2009, 05:14 PM
Post
#3
|
|
|
D.J. Illtactics ![]() ![]() ![]() Group: Member Posts: 57 Joined: May 2006 Member No: 400,047 |
when you see a few HTML elements in a row in a style sheet, it's editing nested items. in your table table table table { } example, you're editing all tables that are nested within three other tables, like so: ]something like that will also be editing table table table table table { }, so if you don't want that to happen, you'll have to add different properties for tables nested within four tables. say you come across a CSS code, something like div a span { }. something like that would be editing all <span> tags that are nested within <a> tags within <div> elements: Thank you so much Fixtatik....Im gonna sit here and study your reply really hard so i can really grasp the concept you have provided... |
|
|
|
djilltactics CSS Question Mar 20 2009, 04:37 PM
Medi It means that part of the code is pointing to a sp... Mar 20 2009, 04:42 PM
schizo Moved to Myspace Support.
Honestly I wouldn't... Mar 20 2009, 04:43 PM
djilltactics (my apologies schizo for placing the topic in the ... Mar 20 2009, 04:57 PM
Medi You can download a firefox addon that will display... Mar 20 2009, 04:58 PM
fixtatik QUOTE(djilltactics @ Mar 20 2009, 06:14 P... Mar 20 2009, 05:58 PM
djilltactics Oh wow this should definetly help alot...Thanks Me... Mar 20 2009, 05:09 PM
Medi QUOTE(djilltactics @ Mar 20 2009, 05:09 P... Mar 20 2009, 05:10 PM
manny-the-dino So topic closed? Mar 21 2009, 12:01 AM
Mike Topic closed & moved. Mar 21 2009, 04:36 AM![]() ![]() |