Hi, hi. CSS question(s)

OokamiAzura's picture
How do you get two boxes next to each other?

How do you get an image next to a box?

How do you get text next to an image?

Long story short, I've looked up codes for all of those things, and none of them helped. Everything looks like crap when I do it =/
Unplugged's picture

Have you tried putting the

Have you tried putting the boxes in tables?
<table style="border:hidden">
  <tr>
   <td>
    <div style="width:200px;height:200px;overflow:auto">box one</div>
   </td>
   <td>
    <div style="width:200px;height:200px;overflow:auto">box two</div>
   </td>
  </tr>
</table>


Alternatively, for having an image next to a box, you just replace one of those divs with the picture. For having text next to an image you can use the same process. Smiling
OokamiAzura's picture

Hnn...I just gave it a try,

Hnn...I just gave it a try, but I'll have to play with it further. It looks really messy when I go to preview it...like I said, I'll play around with it a bit more.

Thanks &hearts
Unplugged's picture

If you have any problems with

If you have any problems with that code just tell me. :)