gpt4 book ai didi

html - 在每第 10 个 div 元素之后隐藏前 4 个 div

转载 作者:太空宇宙 更新时间:2023-11-03 20:28:04 25 4
gpt4 key购买 nike

我想在每 10 个 div 元素之后隐藏前 4 个 div 元素。那么如何使用 nth-of-type 或任何其他样式的 css 是可能的。

任何人对我的问题有想法然后请更新我。

最佳答案

尝试在此处使用 nth-child css 选择器...您希望每 10 个元素后有 4 个元素,因此请使用 10n+1110n+12, 10n+13, 10n+14...

注意:我已经更改了所选元素的颜色只是为了视觉...使用 display:none 隐藏。 ..

.parent {
display: flex;
flex-wrap: wrap;
}

.parent div:nth-child(10n+11),
.parent div:nth-child(10n+12),
.parent div:nth-child(10n+13),
.parent div:nth-child(10n+14) {
background: red;
color: #fff;
}

.parent div {
padding: 10px;
background: #ccc;
font: 13px Verdana;
font-weight: bold;
margin: 4px;
color: #000;
}
<div class="parent">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>7</div>
<div>8</div>
<div>9</div>
<div>10</div>
<div>11</div>
<div>12</div>
<div>13</div>
<div>14</div>
<div>15</div>
<div>16</div>
<div>17</div>
<div>18</div>
<div>19</div>
<div>20</div>
<div>21</div>
<div>22</div>
<div>23</div>
<div>24</div>
<div>25</div>
<div>26</div>
</div>

关于html - 在每第 10 个 div 元素之后隐藏前 4 个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49292335/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com