You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
539 B

10 months ago
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<title>CSS Inheritance Example</title>
<style>
body {
background-color: lightslategray;
color: whitesmoke;
font-size: 35px;
}
div {
background-color: orange;
margin: 50px;
padding: 100px;
width: 300px;
}
</style>
</head>
<body>
<h2>CSS Inheritance</h2>
<div>Example</div>
</body>
</html>