<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>第一次作业</title>
</head>
<style type="text/css">
div {
width: 500px;
height:350px;
padding: 15px;
background-image: url(image/9.png);
background-size: 530px 380px;
background-repeat: no-repeat;
border-radius: 20px;
box-shadow: 8px 8px 8px #888;
}
.text {
color: #453837;
line-height:1.5em;
text-indent: 2em;
}
</style>
<body>
<div>
<h3 style="color: yellow;font-style: 25px;text-align: center;" onmouseover="change(this);
"onmouseout="old(this)" >315曝光</h3>
<p>就在刚刚,2018年315晚会结束,多家企业被曝光!央视财经记者与执法人第一时间
奔赴涉事企业现场,现已有多家企业被查封</p>
<p>此外,大众汽车已公开道歉</p>
</div>
<script type="text/javascript">
function change(element) {
element.style.fontsize = '34px'
element.style.color = 'red'
}
function old(element) {
element.style.fontsize = '20px'
element.style.color = 'yellow'
}
</script>
</body>
</html>