This content has been marked as final.
Show 5 replies
-
1. Re: Simple question about a simple layout.
Nancy O. Mar 5, 2013 11:20 AM (in response to jyeager11)If you're using HTML5, use floated <aside> tags.
CSS:
aside {float:left; width 300px}
HTML:
<aside>
Image here
</aside>
<aside>
Text here
</aside>
Nancy O.
-
2. Re: Simple question about a simple layout.
jyeager11 Mar 5, 2013 11:25 AM (in response to Nancy O.)So I absolutely need 2 containers in my HTML?
-
3. Re: Simple question about a simple layout.
Nancy O. Mar 5, 2013 11:26 AM (in response to jyeager11)Yes.
Nancy O.
-
4. Re: Simple question about a simple layout.
jyeager11 Mar 5, 2013 11:31 AM (in response to Nancy O.)Thanks!
-
5. Re: Simple question about a simple layout.
MurraySummers Mar 5, 2013 11:39 AM (in response to jyeager11)Actually one container would work, too.
<img style="float:left;margin-right:15px;width:245px;"><aside style="margin-left:260px;width:700px;">Oodles of content here</aside>



