Which property do the child elements inherit from the div element?
font-familyborderpadding- None of the properties are inherited
Make sure to pick font-family.
<html>
<head>
<style> div {border: solid 3px black; padding: 40px; font-family: cursive;} </style>
</head>
<body>
<div>
<p> Bart Simpson must not tell lies. </p>
<p> Bart Simpson must not tell lies. </p>
<p> Bart Simpson must not tell lies. </p>
<p> ... </p>
</div>
</body>
</html>
]]>