我的CMS中有很多字段看起来像这样:
<input aria-required="true" name="weblinktitle" id="foo1" size="25" class="myclass required form-control" type="text"><br />
我可以选择为每个人插入一个自定义类(myclass)但是我无法更改字段外观。我只能通过定位ID修改字段,而不是我想要的。如何修改div类“myclass”中的所有字段?
更新了小提琴:http://jsfiddle.net/L2nht9kn/2/
我想念的是什么?任何线索?
答案 0 :(得分:0)
我访问了那些样本。第二个很棒。
您可以轻松地按类别打电话给您:input.myclass
您的问题是什么问题?
input[type=text].myclass{
/****your codes****/
background:red;
}