<html>
<head>
<title>The background-color Property</title>
<style>
body {
background-color: rgb(35%, 35%, 85%);
}
h1 {
background-color: white;
}
p {
font-size: 1.2em;
background-color: white;
}
</style>
</head>
<body>
<h1>Background Color Transparency</h1>
<p>default value<br />
"transparent" <br />
</body>
</html>
|