<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>招聘会</title>
<style type="text/css">
div{
width: 400px;
height: 200px;
//border:1px solid red;
padding: 15px;
background-image:url(image/1.jpg);
background-size: 430px 230px;
background-repeat: no-repeat;
border-radius: 20px;
box-shadow: 2px 2px 2px 2px #888;
}
.text {
color:red;
text-indent: 2em;
line-height: 1.5em;
}
</style>
</head>
<body>
<div>
<h3 style="color:red; text-align: center;font-size: 20px;"
onmouseover="change(this)" onmouseout="old(this)">招聘员工</h3>
<p class="text">某公司招聘员工,几百名大学生争相自报家门:“我北大”“我交大”“我浙大”突然有一女生喊道“我胸大!”董事长一拍桌子说“就是你了!”</p>
</div>
<script type="text/javascript">
function change(element) {
element.style.fontSize = '24px'
element.style.color = 'green'
}
function old(element) {
element.style.fontSize = '20px'
element.style.color = 'red'
}
</script>
</body>
</html>