computerquest
computerquest

Reputation: 697

What is : operator

I have been looking at others peoples code(html, css) and I have found this : operator several times like it is used as an if statement but I am not so sure. So if you could clarify what is : in html and css.

<b:include data='blog' name='all-head-content'/>

Thanks for your help.

Upvotes: 0

Views: 127

Answers (1)

RayGe
RayGe

Reputation: 71

That signifies that the TAG belongs to a specific taglib namespace. In this case, its the namespace designated with b.

You see this extensively in things like GSP's etc.

EDIT: Heres a link to W3schools's explanation of XML's namespaces

http://www.w3schools.com/xml/xml_namespaces.asp

Upvotes: 2

Related Questions