0

我似乎无法让子 div 伸展到父级,我不太确定是否需要在 #fullpage-content 上指定 % 宽度,即使 #middle 设置为 76%?好像忘记了。。

**这是一个页面链接,当单击按钮时,它们各自的容器不适合容器。

这是主要的CSS:

#fullpage-content {clear:both;margin-top:1.5em;padding:10px 25px 30px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;border:px solid #e6e4e3;box-shadow:inset 0px 1px 4px #e0e0e0;background: -webkit-gradient(linear, left top, left bottom, from(#f3f1f1), to(#fff));}

.Advert .tab {box-shadow:inset 0px 1px 4px #cac7c6;background:#fff;padding:5px 18px 15px;margin:0 0 8px 0;clear:left;float:left;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}

#contact {float:right;clear:right;width:220px;margin:15px 0 0 35px;}

.aboutus ul {list-style-image:url(/Assets/Images/SiteStructure/Advert-Template/bullet.gif);color:#4b4b4b;line-height:normal;padding-left:30px;}
.aboutus li  {padding:0 0 10px 5px;}
.abullets1, .abullets2 {float:left;width:30%;}
.bullets1, .bullets2  {width:33%;padding-left:20px;}

我还想知道是否需要添加 position:relative 到任何容器 div 并指定流体 % 边距/填充以使其不会中断?试图让它正常工作......

非常感谢任何帮助!

4

1 回答 1

0

将元素的宽度设置为 100% 将使其与父元素的宽度相同。根据您给出的内容,我无法完全说出您的 CSS 中的内容,但我会拼凑出一个小提琴来向您展示。

小提琴

但是是的,如果它是 div 或块级元素,则不需要如上所述

于 2012-07-29T10:02:32.883 回答