If have a style like this:
.Style1
{
background-color:white;
}
And a second style like this:
.Style2
{
border: black solid 1px;
}
How do I get Style2
to have Style1
as a base style???
Malcolm
csshtmlinheritance
If have a style like this:
.Style1
{
background-color:white;
}
And a second style like this:
.Style2
{
border: black solid 1px;
}
How do I get Style2
to have Style1
as a base style???
Malcolm
Best Solution
This way
Style1
andStyle2
will both have the background set to white, and onlyStyle2
will also have a black border.