我无法弄清楚如何使fieldset的标题具有扎实的背景色。当我尝试在CSS中更改颜色时,它会为整个字段集框着色。
答案 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}