Hi,
Is it possible to combine CSS style rule?
In Firebug, I click an element, it has these Styles:
#nav .linkedimglinklist1 a {ovr_13_e.css (line 1)
position:relative;
top:-3px;
}
.linkedimglinklist1 a {hp_1.css (line 1)
display:block;
}
a, a:link, a:visited, .parent h2 a, .parent h3 a, .nav1
a:active, .slides .controls span, .slides .controls a:active, .simple6
input.button {hp_1.css (line 1)
background-color:transparent;
color:#07519A;
}
a, a:link, a:visited {hp_1.css (line 1)
text-decoration:none;
}
a, a:link, a:visited, .parent h2 a, .parent h3 a, .nav1
a:active, .slides .controls span, .slides .controls a:active, .simple6
input.button {hp_1.css (line 1)
background-color:transparent;
color:#07519A;
}
a, a:link, a:visited {hp_1.css (line 1)
text-decoration:none;
}
So is it possible to combine all of them into 1 rule, like this?
Or course, change the css element to point to this style.
#myid {
position:relative;
top:-3px;
display:block;
background-color:transparent;
color:#07519A;
text-decoration:none;
background-color:transparent;
color:#07519A;
}
Will it break any layout?
Thank you for any suggestion.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Firebug" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/firebug?hl=en
-~----------~----~----~----~------~----~------~--~---