<div><div></div></div> is a DIV inside a DIV... so I don't know what you're asking.
However, a div code inside of a div code is incorrect html, you should use a span within a div code.
like
<div><span></span></div>
or even
<div><span><span></span></span></div>
of course put in the appropriate css attributes you wish to.