我正在一家酿酒厂的网上商店工作。指向页面的链接是http://develope.haimerl.at/shop。在商店页面中,所有葡萄酒都显示了一些信息。第二个产品div应该小一点,这样可以在屏幕宽度under 1000px
上正常工作,但不能在1000px or higher
上工作。
我正在使用一个买来的wordpress主题,正在寻找CSS
中的任何断点来解释这种行为。当我使用fixed height
运算符设置:nth-child
时,它只是剪切子元素。
也许,有人知道我该如何管理第二个元素比另一个元素小一些?
预先感谢
答案 0 :(得分:1)
如果您检查CSS代码,则有一个断点会影响您的 pile-item-even-spacing 类,该类的最小宽度为999px。
@media only screen and (min-width: 999px)
.pile-item-medium-3d:not(.pile-item-small-3d):not(.pile-item-large-3d) .pile-item-even-spacing, .pile-item-medium-3d:not(.pile-item-small-3d):not(.pile-item-large-3d) .pile-item-portrait-spacing {
padding-left: 0;
padding-right: 0;
}
请评论/删除,它将起作用。