我有2个字段集,我需要为两者使用不同的边框颜色,并且样式需要在标题中 如何区分这两个字段集?
我只知道这件事:
<style type="text/css">
fieldset {border-color:red;}
</style>
感谢
答案 0 :(得分:0)
你可以简单地添加类来区分它们。
html标记
<fieldset class="set-1">
<!-- your code here -->
</fieldset>
<fieldset class="set-2">
<!-- your code here -->
</fieldset>
CSS代码
fieldset.set-1 {border-color:red;}
fieldset.set-2 {border-color:green;}
答案 1 :(得分:0)
使用fieldset:first-child
查看此fiddle,只需清除您的问题,以便我们为您提供帮助,如果我是对的,请查看小提琴。
答案 2 :(得分:0)
您可以使用first-child
和last-child
伪选择器来执行此操作
简单示例:
<强> HTML:强>
<fieldset>
<legend>Fieldset 1</legend>
Content goes here 1
</fieldset>
<fieldset>
<legend>Fieldset 2</legend>
Content goes here 2
</fieldset>
<强> CSS:强>
/* Select first fieldset */
fieldset:first-child {
background: #999;
color: purple;
border-color: purple;
}
/* Select last fieldset */
fieldset:last-child {
border-color: green;
color: green;
background: white;
}
/* set some properties to all legends */
fieldset legend {
font-weight: bold;
color: #111;
}