Two values defined in the same propertie
I'm making a internal CSS sheet (I know, I know...but the client wants in internal :confused:) for a page and I had a pretty basic question. Is there way want when I'm working with my rule properties at the top of the page is there a way to assign 2 values to the same properties?
Example of what I currently have:
.example{
color:#669900;
font-size:14px;
[color=red:1i8frqo1]font-style:italic
font-style:oblique;[/color:1i8frqo1]
font-weight:bold;
text-transform:capitalize;
}
What I would like to do:
.example{
color:#669900;
font-size:14px;
[color=red:1i8frqo1]font-style:italic, oblique;[/color:1i8frqo1]
font-weight:bold;
text-transform:capitalize;
}