我商店的列表视图仅在MEdge中中断。知道为什么会这样,以及如何解决它?
可以找到该网站here。
我用来排列图片的自定义CSS如下。
/*WooCommerce Shop Button Alignment*/
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
min-height: 270px !important;
margin-bottom:10px;
}
.woocommerce ul.products li.product .button {
margin-top: 0;
}
/*WooCommerce Shop image aligning*/
.list-view {
display:flex;
}
.item-img {
display:inherit !important;
align-items:center !important;
width:100%;
height:auto;
}
.actions-addtocart a {
line-height:33px !important;
}
/*hiding customlocation class */
.cart-customlocation {
display:none;
}

我认为由于某些原因,Edge并不能识别自定义CSS的一部分。
我也清除了缓存,但似乎也无法解决问题。