gpt4 book ai didi

html - 使用动态 ID 处理 CSS

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

我的 html 页面类似于...

<a href="#" id="play_1">play1</a>
<a href="#" id="play_2">play2</a>
<a href="#" id="play_1">play3</a>
<a href="#" id="play_2">play4</a>
<a href="#" id="file_1">file1</a>
<a href="#" id="file_2">file2</a>

我想为 play_"#"和 file_"#"定义通用的 CSS。我如何定义 CSS?

最佳答案

给标签添加类

<a href="#" class="play" id="play_1">play1</a>
<a href="#" class="play" id="play_2">play2</a>
<a href="#" class="play" id="play_1">play3</a> <!-- double ID -->
<a href="#" class="play" id="play_2">play4</a> <!-- double ID -->
<a href="#" class="file" id="file_1">file1</a>
<a href="#" class="file" id="file_2">file2</a>

因为您有两个 ID,所以要么完全删除 ID,要么使它们独一无二

<a href="#" class="play" id="play_1">play1</a>
<a href="#" class="play" id="play_2">play2</a>
<a href="#" class="play" id="play_3">play3</a>
<a href="#" class="play" id="play_4">play4</a>
<a href="#" class="file" id="file_1">file1</a>
<a href="#" class="file" id="file_2">file2</a>

在css中使用

.play {
/* add your common play styles here */
}
.file {
/* add your common file styles here */
}

关于html - 使用动态 ID 处理 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13837431/

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