开发者

Content is stretching beyond the wrapper's boundaries... (HTML/CSS)

开发者 https://www.devze.com 2023-02-16 13:08 出处:网络
I\'m working on my website and I can\'t seem to figure out why it\'s doing what it is doing. The issue is 开发者_StackOverflow中文版that the text in the content area is stretching beyond the wrapper.

I'm working on my website and I can't seem to figure out why it's doing what it is doing. The issue is 开发者_StackOverflow中文版that the text in the content area is stretching beyond the wrapper. I'm sure it's a very simple mistake that I'm overlooking and I'm hoping some fresh eyes can spot my mistake. I highlighted in the image where it overflows. Thanks! Garrett

Site: http://thinkgarrett.com/hello/index.php

Here's a screenshot:

Content is stretching beyond the wrapper's boundaries... (HTML/CSS)


Somehow you are not clearing the div floats. This will solve your issue for cross browsers.

Update CSS:

div#wrapper {
  overflow:hidden;
}


The div with class post is currently a 0 pixel line, not concerned with its content.

Change the display type of post to inline-block:

.post {
    width: 720px;
    display: inline-block;
}


Try this CSS...

#latestPost {
   overflow: hidden;
}

Elements do not expand to contain floated children, unless you explicitly make it (using one of the many clearfix techniques).

0

精彩评论

暂无评论...
验证码 换一张
取 消