gpt4 book ai didi

css - 我可以在 cpanel 中使用 !important 吗?我使用 viewen 并获得了 cpanel,但无法在我的 css 中使用 !important 属性

转载 作者:行者123 更新时间:2023-11-28 00:38:14 26 4
gpt4 key购买 nike

我似乎无法在我的控制面板中使用 !important 属性。这是一个常见问题吗

出于某种原因,我无法在我的桌面媒体查询中使用我的 css 之一。我在同一个媒体查询中的其他 css 响应正常,但不适用于以下内容:

div.primervideos_heading {
position: absolute;
left: 7em;
top: 56em;
font-family: 'Lobster', cursive;
font-size: 1.5em;
text-decoration: underline;
white-space: nowrap;
}

我在这里似乎根本无法使用定位....

最佳答案

尝试 position: relative 到父元素。

https://developer.mozilla.org/en-US/docs/Web/CSS/position#Types_of_positioning

An absolutely positioned element is an element whose computed position value is absolute or fixed. The top, right, bottom, and left properties specify offsets from the edges of the element's containing block. (The containing block is the ancestor relative to which the element is positioned.) If the element has margins, they are added to the offset.

例如:

div.primervideos_container {
background: yellow;
border: 1px solid black;
display: block;
height: 100px;
position: relative;
width: 300px;
}

div.primervideos_heading {
position: absolute;
left: 2em;
top: 1em;
font-family: 'Lobster', cursive;
font-size: 1.5em;
text-decoration: underline;
white-space: nowrap;
}
<div class="primervideos_container">
<div class="primervideos_heading">Heading</div>
</div>

关于css - 我可以在 cpanel 中使用 !important 吗?我使用 viewen 并获得了 cpanel,但无法在我的 css 中使用 !important 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54018384/

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