用CSS选择一个特殊的div

时间:2018-02-26 18:51:39

标签: css

如果我有这个HTML代码:

objWord.Documents.Open (C:\word.docx)


With objWord.ActiveDocument
Set myrange = .Content
With myrange.Find
    .Execute FindText:=txt1, ReplaceWith:=""
    .Execute FindText:=txt2, ReplaceWith:=""
    .Execute FindText:=txt3, ReplaceWith:=""
End With
End With

如何在CSS中选择<div class="profile-header col-sm-4"> <div class="profile-cover"> <h1>01</h1> <div class="row"> <div class="col-sm-6"> <div class="checkbox checkbox-primary"> ... </div> </div> <div class="col-sm-6"> <div class="btn-group"> ... </div> </div> </div> </div> </div>

我试过了:

div.checkbox

选择.profile-cover > .checkbox 时,我不想太大。

感谢。

2 个答案:

答案 0 :(得分:2)

A > B只选择一个孩子(直系后代),所以听起来你只需要:

.profile-cover .checkbox

这意味着.checkbox内的任何地方.profile-cover

答案 1 :(得分:0)

按照准确度的降序排序(所有都会达到您的目标元素):

.profile-header>.profile-cover>.row>.col-sm-6>div.checkbox,
.profile-header>.profile-cover>.row div.checkbox,
.profile-header>.profile-cover div.checkbox,
.profile-header div.checkbox,
.profile-cover div.checkbox