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 because you are subscribed to the "Design the Web with CSS" 
at Google groups.
To post: [email protected]
To unsubscribe: [EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---

Reply via email to