for example:
.Title {
color:red; rounded:true;
}
.Caption { color:black; rounded:true; }
how to select by property named "rounded"?
css class name very flexible.
$(".Title").corner();
$(".Caption").corner();
How to replace this 2 operation to one operation. Maybe like this:
$(".*->rounded").corner();
this seems stupid to me. How to do this? is it possible?