html中input的class
时间: 2024-05-23 21:05:54 浏览: 108
class.html
input 标签中的 class 属性用于为输入框指定一个或多个样式类,以便在 CSS 中对其进行样式设置。通常情况下,class 属性的值为一个或多个样式类名,多个样式类名之间使用空格分隔。
例如,下面的代码定义了一个带有两个样式类 bg-primary 和 text-white 的输入框:
```html
<input type="text" class="bg-primary text-white">
```
阅读全文