gpt4 book ai didi

html - 需要用 CSS 为占位符设置 "display; none"
转载 作者:行者123 更新时间:2023-11-27 23:43:47 26 4
gpt4 key购买 nike

WordPress - 元素。尝试优化代码时出了点问题,现在我在页面的第一部分上方有一个巨大的空白空间,我正试图摆脱它。我是新手,正在使用 Elementor,所以我只能使用自定义 CSS。问题出现在平板电脑和移动设备上,而不是台式机上。

<div class="sticky-element-placeholder sticky-element-active" style="display:flex; float:none; flex:0 1 auto; box-sizing:border-box; clear:none; overflow:visible; transform:none; width:448.09722900390625px; height:3277.34716796875px; margin:0px 0px 0px 0px;"></div> 

我已经尝试定位以下目标但没有成功。

.sticky-element-placeholder.sticky-element-active {
display: none
}

<div class="sticky-element-placeholder sticky-element-active" style="display:flex; float:none; flex:0 1 auto; box-sizing:border-box; clear:none; overflow:visible; transform:none; width:448.09722900390625px; height:3277.34716796875px; margin:0px 0px 0px 0px;"></div>

最佳答案

使用对你的风格很重要。

.sticky-element-placeholder.sticky-element-active {
display: none!important;
}

关于html - 需要用 CSS 为占位符设置 "display; none"<div class ="sticky-element-placeholder sticky-element-active",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56907313/

26 4 0