我用Vue的单文件组件,想试试iView UI框架。考虑有以下代码:
<template>
<div>
<i-input class="cred"/>
</div>
</template>
然后我想改变我输入的宽度。例如,检查更改是否生效:
<style scoped>
input {
width: 10px;
}
</style>
但它没有效果。也试过i-input
了。
<style scoped>
.cred {
width: 10px;
}
</style>
按预期工作。
我应该使用哪个 CSS 选择器?