Without <p> like this all work well.
<footer>
<a href="#">Text Here</a>
<address style="display: inline"><a href="#">Text Here</a><address>
<p>
Text Here
</p>
</footer>
But if add <p> then <address> element is getting displayed not inline. I need to make <address> acting inline. How to force that to be so?
http://fiddle.jshell.net/xKhYj/
<footer>
<p>
<a href="#">Text Here</a>
<address style="display: inline"><a href="#">Text Here</a></address>
</p>
<p>
Text Here
</p>
</footer>
It works if u put inline to your
<p>tag, too:Fiddle