给Fieldset的标题一个背景颜色

时间:2012-11-28 14:55:52

标签: html5 css3

我无法弄清楚如何使fieldset的标题具有扎实的背景色。当我尝试在CSS中更改颜色时,它会为整个字段集框着色。

1 个答案:

答案 0 :(得分:1)

HTML

   <fieldset>
    <legend >Personalia:</legend>
    Name: <input type="text"><br>
    Email: <input type="text"><br>
    Date of birth: <input type="text">
  </fieldset>

CSS

fieldset legend {background:red}

工作样本http://codepen.io/yardenst/pen/taBqH