Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在大屏幕上,我希望每 7 个元素都有一个特定的边框。在中型屏幕上,我不希望将这些样式应用于每 4 个。
如何使我的样式成为 .small、.medium、.large 的后代?
第一次使用jquery
$( "element:nth-child(7)" ).addClass("seventh_child"); $( "element:nth-child(4)" ).addClass("fourth_child");
有了上面,您现在可以在媒体查询的帮助下找到每 7 个和第 4 个元素,您可以根据设备宽度添加和删除 css 属性。
我想它会帮助你...