Hi all,
Is there any way to Insert CONTENT’s value of meta[name='author'] tag in page’s margin?
Suppose we have the following under HEAD tag:
I want to show the content value in the button margin. I tried this but didn’t work:
Thanks in advance.
Is there any way to Insert CONTENT’s value of meta[name='author'] tag in page’s margin?
Suppose we have the following under HEAD tag:
<meta name="author" content="John Smith" />
I want to show the content value in the button margin. I tried this but didn’t work:
meta[name="author"] {
string-set: meta attr(content);
}
@page {
@bottom-left { content: "© 2012" string(author);}
}
Thanks in advance.