gpt4 book ai didi

html - 如何使用 css 定位 id ="last_name[]_field"

转载 作者:搜寻专家 更新时间:2023-10-31 22:43:03 24 4
gpt4 key购买 nike

我正在使用 wordpress 插件,开发人员使用名称中的 [] 字符创建了 ID。

我不知道如何用 css 定位它们...

<p id="shipping_city[]_field">stuff</p>

所以我试试

#shipping_city[]_field {font-size:24px;}

或者什么的.. 没有运气。

有没有人遇到过这种事情?

我不想更改开发人员的 html,因为这是一个表单条目,我认为 [] 有一个目的...

最佳答案

您必须转义特殊字符 - 请参阅 Link

The following characters have a special meaning in CSS: !, ", #, $, %, &, ', (, ), *, +, ,, -, ., /, :, ;, <, =, >, ?, @, [, \, ], ^, `, {, |, }, and ~.

There are two options if you want to use them. Either you use the Unicode code point — for example, the plus sign (+) is U+002B, so if you would want to use it in a CSS selector, you would escape it into \2b (note the space character at the end) or \00002b (using exactly six hexadecimal digits).

The second option is far more elegant though: just escape the character using a backslash

#shipping_city\[\]_field {
font-size: 24px;
color: red;
}
<p id="shipping_city[]_field">stuff</p>

关于html - 如何使用 css 定位 id ="last_name[]_field",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29284181/

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