Forum How do I...?

Copyright Symbol

AntoVXR
Hi Guys,

How do I insert a copyright symbol with the CSS content?

@bottom-left {
content: "Specialist Schools and Academies Trust 2007. Charity no. 296729";
}


Cheers
Anto
mikeday
In XML or HTML you can use the © character entity, and in CSS strings you can use \A9, with similar effect.
jim_albright
Just insert the Unicode symbol where you want it.
©

Jim Albright
Wycliffe Bible Translators

AntoVXR
Thank you, worked perfectly