I'm on a project where these custom template elements are inserted into the HTML, but they're used later in the JS and they're not meant to display on the page.
<b:template tag="cite">
<cite><b:content>default content</b:content></cite>
</b:template>
I tried to hide them in CSS like this:
b:template {display:none;}
But it doesn't seem to be working. Is there a way to style these namespaced elements?