gpt4 book ai didi

CSS 问题背景变黑

转载 作者:行者123 更新时间:2023-11-28 14:41:12 25 4
gpt4 key购买 nike

在所附图片中,某些部分的背景为黑色,我无法弄清楚原因。

我知道我问的不是很具描述性,但如果有人能提出一些有用的建议,请多多指教

谢谢

enter image description here

下面的 Css(这是我聚焦黑色背景元素时从 firebug 得到的)

.curResults .tableTopControls {
display: block;
height: 30px;
line-height: 30px;
margin: 0 0 5px;
width: 100%;
}

.tableTopControls {
font-size: 11px;
overflow: hidden;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
border: 0 none;
font-size: 100%;
margin: 0;
padding: 0;
vertical-align: baseline;
}

Inherited fromdiv.dataTables_wrapper
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv.table
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv#mainSection_merchandizerContentSection_rsPromotions_recordSetContainer.panel
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv.panel
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv.js-showTitle
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv.tabContent
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv.tabContentWrap
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv.
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv.content
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv.stage
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromdiv.page
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromform#frmHomePage merchandizer.aspx
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited frombody.body_Merchandizer
body {
font-family: Arial,san-serif;
font-size: 13px;
line-height: 18px;
}

body {
color: #000000;
font-family: Arial,san-serif;
font-size: 13px;
line-height: 18px;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

Inherited fromhtml
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, em, img, small, strong, b, u, i, center, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}

最佳答案

在没有看到所有 css 和 html 的情况下很难做任何事情,但很有可能您没有为元素应用背景,并且父元素的背景颜色之一正在显示。

您发布的 css 中没有背景声明,所以这可能就是原因。我想发布您的整个(相关)代码或链接到演示会让您得到更准确的答案。

关于CSS 问题背景变黑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5880362/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com