I am trying to merge:
span[itemprop='description']
{
color:#8395a7;
font-size:smaller;
}
And
span[itemprop='streetAddress']
{
color:#8395a7;
font-size:smaller;
}
This question has been asked before here but it didn't work for me. I tried this and it failed:
span[itemprop='description'][itemprop='streetAddress']
{
color:#8395a7;
font-size:smaller;
}
Any idea how to merge these?
Thanks!