treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] Photo not resizing my div

  • Simple I am am sure but my div will not resize when inserting a photo. Example here:

    http://74.54.136.162/~salidac2/contact-us.html

    As you can see, the photo overhangs the border. I would expect the div to grow?

    I can put in returns, but that seems so ... bad.

    Any suggestions.

    Also, since I am going to be making many of these Blue Box Divs, sometimes several per page, if there is some CSS trick should be employing to make it all work better, please feel free to critique.

    mark
  • Looks to me like the "overflow: hidden" CSS property needs adding to your content div :)
  • You could add a height of about 400px to #Blue-Box-Top. or an min-height if you are likely to add more text.
    Matt
  • Setting the Overflow property to either 'auto' or 'hidden' to your Blue-Box-Top div should fix it.
  • Thanks to all for the assistance. Setting overflow to auto did the trick.

    Dreamweaver does not show the change, but it does work in the browsers.

    mark