I am looking to access the text-shadow
property in a similar way that we access the padding
property. For example:
div{
padding : 10px 10px 10px 10px;
}
This allows us to access each part individually like this:
$('div').css("padding-left"); etc..
Now, how can I access the horizontalShadow
, verticalShadow
, Blur
, shadowColor
of a textshadow
property individually?