背景颜色,背景图片没有填充整个css盒子模型

发布于 2024-11-26 23:43:44 字数 263 浏览 1 评论 0原文

我有这个问题,无法弄清楚为什么。无论我如何调整,背景颜色、背景图像都没有填充整个CSS盒模型。

http://imageoneads.com/kmplumbing/plumbing.htm

可能是某些 css 特定规则重叠我的代码中的某个地方?

如果有人可以提供帮助,我将不胜感激。

谢谢 大卫

I have this problem than could not figure out why. The background color, background image did not fill in the whole css box model no matter what I adjust it.

http://imageoneads.com/kmplumbing/plumbing.htm

Could it be some css specific rule overlapped somewhere in my codes?

I would appreciate if someone could help.

Thanks
David

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魔法少女 2024-12-03 23:43:44

尝试从 plumbingText2 中删除 background-color: #F9F0D3;

如果您想隐藏背景,请使用:

#plumbingText2 {
    background-color: #F9F0D3;
    border: medium none;
    float: left;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    position: relative;
    vertical-align: top;
    width: 100%;
}

并将 valign="top" 添加到您的 中:

<td valign="top" height="" colspan="2" rowspan="3">  <div id="plumbingText2">

另一种选择是省略 valign< /code> 标记并使用:

#plumbingText2 {
background-color: #F9F0D3;
font-family: Arial,Helvetica,sans-serif;
font-size: 12px;
padding-bottom: 10px;
padding-top: 15px;
}

并在

    上设置 style

<ul style="border: medium none; margin: 0;">

Try removing background-color: #F9F0D3; from plumbingText2.

If you are tying to hide the background use:

#plumbingText2 {
    background-color: #F9F0D3;
    border: medium none;
    float: left;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    position: relative;
    vertical-align: top;
    width: 100%;
}

and add valign="top" to your <td>:

<td valign="top" height="" colspan="2" rowspan="3">  <div id="plumbingText2">

Another option is to leave out the valign tag and use:

#plumbingText2 {
background-color: #F9F0D3;
font-family: Arial,Helvetica,sans-serif;
font-size: 12px;
padding-bottom: 10px;
padding-top: 15px;
}

and set the style on the <ul>:

<ul style="border: medium none; margin: 0;">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文