15
在CSS中,如何選擇所有<tr>
元素,其id
以section_
開頭並以_dummy
結尾?如何選擇ID開始和結束於特定字符串的所有元素?
E.g.我想選擇和應用樣式以下<tr>
S:
<tr id="section_5_1_dummy">
<td>...</td>
</tr>
<tr id="section_5_2_dummy">
<td>...</td>
</tr>
兼容性:IE7 + - http://www.quirksmode.org/css /選擇/#T23 – Gareth