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;
font-style:italic
font-style:oblique;
font-weight:bold;
text-transform:capitalize;
}
What I would like to do:
.example{
color:#669900;
font-size:14px;
font-style:italic, oblique;
font-weight:bold;
text-transform:capitalize;
}




