我遇到了一个问题,我已经通过Wordpress开发了一个网站,并希望以一种方式设置所有产品的价格,而以另一种方式设置小计,税项和总计的样式。它们都属于woocommerce-Price-amount量的CSS类。无论如何,我只能针对tr“ cart_item”内部的对象吗?谢谢!
<table class="shop_table woocommerce-checkout-review-order-table" style="border-color: rgb(255, 255, 255);">
<thead style="background-color: rgb(0, 0, 0);">
<tr>
<th class="product-name" style="border-color: rgb(255, 255, 255); color: rgb(255, 255, 255);">Product</th>
<th class="product-total" style="border-color: rgb(255, 255, 255); color: rgb(255, 255, 255);">Total</th>
</tr>
</thead>
<tbody>
<tr class="cart_item">
<td class="product-name" style="border-color: rgb(255, 255, 255);">
Autumn Leaf Shirt - Large <strong class="product-quantity">× 2</strong> </td>
<td class="product-total" style="border-color: rgb(255, 255, 255);">
<span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>70.00</span> </td>
</tr>
</tbody>
<tfoot>
<tr class="cart-subtotal">
<th style="background-color: rgb(0, 0, 0); border-color: rgb(255, 255, 255); color: rgb(255, 255, 255);">Subtotal</th>
<td style="border-color: rgb(255, 255, 255);"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>70.00</span></td>
</tr>
<tr class="tax-total">
<th style="background-color: rgb(0, 0, 0); border-color: rgb(255, 255, 255); color: rgb(255, 255, 255);">Tax</th>
<td style="border-color: rgb(255, 255, 255);"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>0.00</span></td>
</tr>
<tr class="order-total">
<th style="background-color: rgb(0, 0, 0); border-color: rgb(255, 255, 255); color: rgb(255, 255, 255);">Total</th>
<td style="border-color: rgb(255, 255, 255);"><strong><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>70.00</span></strong> </td>
</tr>
</tfoot>
答案 0 :(得分:1)
是的!您可以将woocommerce-price-item
中的cart_item
专门定位为:
.cart_item .woocommerce-Price-amount{
/**Your Properties here**/
}
这只会将您的属性应用于类woocommerce-Price-amount
内的元素cart_item
内的元素
基本上在CSS中,您可以通过以下方式在bar
内访问foo
:
.foo .bar{
}