<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>通配符</title>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<style type="text/css">
/* 重点看这里,选择ID以“container_”开头的元素 */
[id^='container_']{
background-color: darkseagreen;
}
</style>
</head>
<body>
<div id="app">
<div v-for="i in 10"><p v-bind:id="'container_'+i"> {{i}} </p></div>
</div> <script>
new Vue({
el: '#app',
data: {}
})
</script>
</body>
</html>
相关文章
- CSS使用flex布局和order属性对html元素排序
- CSS3使用transition属性实现过渡效果
- 避免使用CSS @import 影响页面加载速度
- 进一步理解CSS浮动与清除浮动
- html css常用样式
- CSS布局相关及Flex详解
- css:使用filter和backdrop-filter实现高斯模糊效果
- jQuery中的表单对象属性过滤选择器(四、八)::enabled、:disabled、:checked、:selected
- jQuery中的属性过滤选择器(四、五):[attribute] 、[attribute=value]、[attribute!=value] 、[attribute^=value] 等
- css实现垂直居中的方法总结(很详细滴)