本文介绍了是否可以在html文本框或标签中使用2个或更多类?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个名为
class1 的CSS课程
{
颜色 : 红色;
}
class2
{
color : blue;
}
class3
{
color : 黄色;
}
我有一个文本框
< 输入 type = text id = txtname class = class1 class2 class3 >
文本框包括3节课。所以在运行文本框时会出现文本的颜色,如何预测颜色。
解决方案
Hi,
I have a CSS classes named
class1 { color:red; } class2 { color:blue; } class3 { color:yellow; }
and I have a text box
<input type="text" id="txtname" class="class1 class2 class3" >
The text box includes 3 classes. So on running the text box which will be the color of the text and how can I predict the color.
解决方案
这篇关于是否可以在html文本框或标签中使用2个或更多类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!