我有这个html:
<div class="d-flex align-items-center flex-column flex-sm-row justify-content-between w-100 pt-10 pb-15">
<h1 class="product-title mb-0 pl-10 order-2 order-sm-1 ml-auto ml-sm-0" itemprop="name">
Samsung Galexy A70
</h1>
</div>
哪个是真实的?
此选择器?
div.d-flex align-items-center flex-column flex-sm-row justify-content-between w-100 pt-10 pb-15 h1{
}
或这一个?
div.d-flex h1{
}
您最想要的只是:
您的第一种方法是错误的,第二种是好的
在开始工作之前,第一个几乎很冗长。