Aligning a div inside A H2 tag

css, html

Solution

You cannot use an `h2` inside an `h2`. If you change the inner `h2` to `span` it will be inline.

Like so: http://jsfiddle.net/nNuwT/2/

Problem

I have an issue where i need to insert a div inside a H2 Tag. Is that possible. I think it should. Only think is i dont know how to get it done. I have tried the following HTML ``` <h2 id="strap">Blah Blah & Some More Blah Blah Blah <div class="section contain"> <a href="http://www.facebook.com/BlahBlah" rel="nofollow" target="_blank"><img alt="facebook" src="<%=SkinPath %>img/social/fb.png"/></a> <a href="http://twitter.com/BlahBlah" rel="nofollow" target="_blank"><img alt="twitter" src="<%=SkinPath %>img/social/tw.png"/></a> <a href="http://BlahBlah.wordpress.com/" rel="nofollow" target="_blank"><img alt="blog" src="<%=SkinPath %>img/social/wp.png"/></a> </div> </h2> ``` JSFIDDLE I want the div element(Social Icons) to come on the same line. Is there any other way of doing this?

Original source