element.
::before选择器
The ::before selector is used to insert come content before the selected element.
语法
el::before {
css declarations
}
Copy after login
Here, el is the element that the ::before pseudo-element will be applied to. The ::before pseudo-element is preceded by two colons (::) to distinguish it from the :before pseudo-class, which is an older syntax that is still supported for backward compatibility.
例如,p::before会在
元素之前添加内容。
方法
The approach to add commas between a list of items dynamically with CSS involves the use of a pseudo-element called ::before that can insert content before the selected element. In this case, we target the li elements within a ul list and add a comma before each one using the ::before selector. This method allows us to avoid manually adding commas to the list and automate the process with CSS. Additionally, we can use the display and flex-wrap properties to arrange the list items and ensure they wrap to a new line if necessary. Finally, we can use JavaScript to add and remove list items dynamically.
Example
的中文翻译为:示例
以下代码使用CSS在一组项目之间动态添加逗号。文档包括一个标题,带有CSS属性的样式标签,以及一个包含标题、具有类名为“item”的项目列表和两个用于添加和删除项目的按钮的div标签。样式标签包括一个伪元素选择器,在每个列表项之前(除了第一个)添加逗号和空格。脚本标签定义了两个函数;addItem函数添加一个带有文本“Item!”的新列表项,removeItem函数随机选择一个列表项并将其删除。
<!DOCTYPE html>
<html>
<head>
<style>
.items {
display: flex;
list-style: none;
padding: 0;
flex-wrap: wrap
}
.item~.item::before {
content: ", ";
}
</style>
</head>
<body>
<h4>How to Add Commas Between a List of Items Dynamically with CSS?</h4>
<div>
<ul class="items">
<li class="item">Eggs</li>
<li class="item">Bread</li>
</ul>
</div>
<div>
<button onclick="addItem()">Add Item</button>
<button onclick="removeItem()">Remove Item</button>
</div>
<script>
function removeItem(){
let items=document.querySelectorAll('.item');
let idx=Math.floor(Math.random()*items.length);
items[idx].remove();
}
function addItem(){
let itemList=document.querySelector(".items");
let item=document.createElement("li");
item.innerText="Item!";
item.className="item";
itemList.append(item);
}
</script>
</body>
</html>
Copy after login
结论
总结一下,利用CSS在文章串中动态包含逗号的使用是一种聪明的策略,它能够提高网页的可读性和视觉吸引力。通过利用CSS的少用技能,网页设计师可以解决看似琐碎的问题。通过发挥想象力和探索新的可能性的热情,您可以利用CSS的潜力来创建引人注目和艺术性的壮丽网页设计,给观众留下深刻的印象。因此,请毫不犹豫地尝试各种可用工具和技术,并发挥您的网页开发专业知识的全部潜力。
The above is the detailed content of How to dynamically add commas between list of items using CSS?. For more information, please follow other related articles on the PHP Chinese website!