I found some strange behavior:
When I use the css
The url uses the basepath of the CSS for the url.
However, if I use
And specifiy a graphic attribute in the tag in the XML document, the url uses the basepath of the XML. I don't know if this is regular functionality, but I could see why it could be neat. Is it documented anywhere?
Ben
When I use the css
.iconpic {
content: url("imgs/icon.png");
}
The url uses the basepath of the CSS for the url.
However, if I use
.iconpic {
content:attr("graphic", url);
}
And specifiy a graphic attribute in the tag in the XML document, the url uses the basepath of the XML. I don't know if this is regular functionality, but I could see why it could be neat. Is it documented anywhere?
Ben