2

我喜欢这个 div,它没有IDCLASS属性:

<div data-placement="kolp">
blabla
</div>

如何在我的 CSS 中定位它?也许需要一些 javascript 帮助?

4

2 回答 2

4

你可以试试这个:

.container > div {
 /* targets your div if it's a direct child of container */
}

.container div {
 /* targets any div that is inside container */
}

div[data-placement=kolp] {
  /* targets any div with the attribute data-placement=kolp */
}

在这里摆弄:http: //jsfiddle.net/JUP87/

于 2013-04-10T15:27:49.560 回答
2

您可以使用属性选择器:

div[data-placement] {
    /* selects all div elements with the 'data-placement' attribute */
}

/* or */

div[data-placement="kolp"] {
    /* selects all div elements with the 'data-placement' attribute which is equal to 'kolp' */
}

JS 小提琴演示

参考:

于 2013-04-10T15:28:59.777 回答