クラス行の 'div'に動的にクラスを追加するにはjqueryスクリプトが必要です。クラスはマージンを設定するためのクラスです。クラス行に2つのdivがある場合は、最初のクラスのみにクラスを追加し、3つの 'div'がある場合は、2つにクラスを追加して3を避けます。divをループして子クラスに動的にクラスを追加する
実際には、 '行'のdivを計算し、最後のdiv以外のdivを追加する必要があります。ここに私のHTMLは次のとおりです。 - ここに
<div class="row">
<div class="two-col">
<h3>Header 2/3 Column</h3>
<p>Kidney Cancer Canada is a charitable patient-led support organization established to improve the quality of life for patients and their
families living with kidney cancer. <a href="#">Kidney Cancer Canada</a> advocates for access to netreatments, provides support and information to patients,
funds much-needed research, and works to increase awareness of kidney cancer as a significant health issue. Our goal is to help patients navigate
through information about their disease and ensure they have access to new treatment options available to them.</p>
</div>
<div class="one-col">
<h3>Header 1/3 Column</h3>
<p>KCC hosts patient and caregiver education meetings and webcasts from locations all across canada. Atttending meetings in-person provides an
excellent oppurtunity to meet other kidney cancer patients, caregivers, and healthcare professionals</p>
</div>
<div class="clear"></div>
</div>
<div class="row">
<div class="one-col">
<h3>Header 1/3 Column</h3>
<p>KCC hosts patient and caregiver education meetings and webcasts from locations all across canada. Atttending meetings in-person provides an
excellent oppurtunity to meet other kidney cancer patients, caregivers, and healthcare professionals</p>
</div>
<div class="one-col">
<h3>Header 1/3 Column</h3>
<p>KCC hosts patient and caregiver education meetings and webcasts from locations all across canada. Atttending meetings in-person provides an
excellent oppurtunity to meet other kidney cancer patients, caregivers, and healthcare professionals</p>
</div>
<div class="one-col">
<h3>Header 1/3 Column</h3>
<p>KCC hosts patient and caregiver education meetings and webcasts from locations all across canada. Atttending meetings in-person provides an
excellent oppurtunity to meet other kidney cancer patients, caregivers, and healthcare professionals</p>
</div>
<div class="clear"></div>
</div>
クラスは、実際に*でください*必要が動的に追加するか、これはあなたがに頼るしているので、コレクションの最後の子が、すべてにCSSを適用する方法を知らないだけの場合ですJSそれをハックする?動的でなければならない場合は、クラスを親に適用し( '.row')、' .row.newClass .one-col'または同様のセレクタを介してスタイルを変更する方が効率的です。 – cimmanon