0

我不知道如何使字段集的标题具有纯色背景色。当我尝试在 CSS 中更改颜色时,它会为整个字段集框着色。

4

1 回答 1

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

于 2012-11-28T14:59:02.783 回答