background-clip: border-box| padding-box| content-box| inherit;
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color: yellow;
background-clip: border-box;
text-align: center;
border:5px dotted blue;
}
h1,h2{
color: red;
}
</style>
</head>
<body>
<div>
<h1>
Welcome to the bianchenghao6.com
</h1>
<h2>
background-clip: border-box;
</h2>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color: yellow;
background-clip: padding-box;
padding: 25px;
text-align: center;
border:5px dashed blue;
}
h1,h2{
color: red;
}
</style>
</head>
<body>
<div>
<h1>
Welcome to the bianchenghao6.com
</h1>
<h2>
background-clip: padding-box;
</h2>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
div {
background-color: yellow;
background-clip: content-box;
padding: 15px;
text-align: center;
border:5px dashed blue;
}
h1,h2{
color: red;
}
</style>
</head>
<body>
<div>
<h1>
Welcome to the bianchenghao6.com
</h1>
<h2>
background-clip: content-box;
</h2>
</div>
</body>
</html>