我试图让每四分之一div有一个margin-left:0; 但是,目前我正在为每个单独的条目div如下:
   .product_display:nth-of-type(1)  {
    margin-left: 0;
}
   .product_display:nth-of-type(5)  {
    margin-left: 0;
}
   .product_display:nth-of-type(9)  {
    margin-left: 0;
}
是否有可能做这样的事情:
   .product_display:nth-of-type(1,5,9)  {
 margin-left: 0;
}
?