给我一个只读input好看的样式
时间: 2024-04-14 10:26:07 浏览: 129
当然,我可以给你一个只读的 input 的好看样式示例。以下是一个基于 Quasar 的 Vue 3 示例:
```html
<template>
<div class="custom-input">
<q-input readonly dense outlined v-model="inputValue" />
</div>
</template>
<style>
.custom-input {
position: relative;
display: inline-block;
}
.custom-input .q-field__native {
background-color: #f5f5f5;
padding: 0.5rem 1rem;
border-radius: 4px;
border: none;
font-size: 14px;
color: #555;
}
.custom-input .q-field__native:focus {
outline: none;
}
.custom-input .q-field__label {
color: #888;
}
.custom-input .q-field__bottom-row {
display: none;
}
</style>
```
上面的示例代码定义了一个名为 `custom-input` 的外部容器,然后在内部嵌入了一个只读的 q-input 组件。通过自定义样式,我们设置了输入框的背景色、边框、内边距、字体大小和颜色等属性,以及隐藏了底部行。你可以根据自己的需求进一步修改这些样式。
阅读全文