2017-03-29 10 views
0

角度プロジェクトでnth-of-typeを選択したいが、すべての要素が親/ラッパーを取得できない。それは[dashboard-functionbutton]ようなもので、「親」をスタイルすることが可能であり、このようにそれを行うことができない場合Angular2 CSSセレクター

<dashboard-functionbutton _ngcontent-tub-48="" _nghost-tub-49="" ng-reflect-function-button-item="[object Object]"> 
<button _ngcontent-tub-49="" class="function-btn" ng-reflect-ng-class="[object Object]"></button> 
</dashboard-functionbutton> 

: 例えば私は、マークアップを持っているすべての3番目のボタンを取得したいですか?

答えて

0

CSS:

dashboard-functionbutton:nth-of-type(3n+0) > button { border: 1px solid red; } 
関連する問題