p
elements that have div
element as a parent of any leveldiv p {
color: red;
}
Selects all the p
elements that are children of the element with id #id1
#id1 p {
color: green;
}
Selects all p
elements that have parent element with class .class1
.class1 p {
color: yellow;
}
<fieldset>
tag should contain legend
tag in order the fieldbox to have title
<form action="/action_page.php">
<fieldset>
<legend>Personalia:</legend>
<label for="fname">First name:</label><input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last name:</label><input type="text" id="lname" name="lname"><br>
</fieldset>
</form>