我如何在特别安全局中使用定期表述? 我找到了一个辅导网站,用于在国际空间站配对静态阵列,但我没有能够找到一个能够使用定期表达方式与安保部的多管齐下。 (I found one here,但我无法工作。 我还研究了。 W3C关于使用定期标识的文件,但我无法理解该文件。
I m want to match a series of <DIV>
tags whose ids start at s1
and increase by one (ie. #s1 #s2 #s3
...).
I know that div[id^=s]
, div[id^= s ]
, and div[id^= s ]
each perform the match as I intend it in my CSS. However, each of those also match an id of #section
, which I don t want to happen. I believe that "/^s([0-9])+$/"
is the equivalent PHP string--I m just looking for it in CSS version.