I have seen bellow tag in wordpress 404 page .is frown is attribute. why it is used.

<span frown>:(</span>

Thanks

link|improve this question

77% accept rate
feedback

1 Answer

up vote 2 down vote accepted

That's not a HTML (5) attribute. It's used by Wordpress (CSS selector: span[frown]) to attach styles to that element.

link|improve this answer
so you mean we can add what ever like foo or any think.is there any advantage – gowri Sep 20 '11 at 9:22
If you don't mind using non-standard HTML attributes, you can even practice this: <div mystyle secret>Secret text</div> + CSS: div[mystyle][secret]{display:none;}. The more convential way is to use class names: <div class="mystyle secret">..</style> + CSS: div.mystyle.secret{display:none} – Rob W Sep 20 '11 at 9:24
if you want to stick to the HTML5 standard, all custom attributes should start with data-. Thus to be HTML5 compliant, the given example should actually be <span data-frown>. None of the browsers actually care about this right now, so you can get away without the data-, but best practice would be to include it if you're making your own attributes. – Spudley Sep 20 '11 at 11:04
Note though that CSS selectors like this do not work in IE6 – Tim B James Oct 5 '11 at 11:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.