gpt4 book ai didi

php - CSS 通过包含查询字符串的 id 选择元素

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

我正在为网站设置主题 http://www.complementchic.com

所以在我的 css 中,我为 body 设置了 css 以调整图像大小

http://www.complementchic.com/modules/vente_flash/flashSale.php

 #module-vente_flash-flashSale

但是当我通过页面切换语言时php post 的 url 变为:

http://www.complementchic.com/modules/vente_flash/flashSale.php?&id_lang=2

因此我在 css 中的 body id 变成了

 #module-vente_flash-flashSale?&id_lang=2

而且我无法在我的 css 样式表中使用此 ID -

那么,a) 有没有办法让我在我的样式表中使用这个 ID 或解决这个问题,

最佳答案

尝试使用 CSS 属性选择器:

HTML:

<body id="module-vente_flash-flashSale?&id_lang=2">
This is a text here
</body>

CSS:

body[id="module-vente_flash-flashSale?&id_lang=2"] {
background-color: red; /* for example */
}

jsBin 演示

关于php - CSS 通过包含查询字符串的 id 选择元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13251007/

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