<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.div{
width:450px;
height: 250px;
padding: 15px;
background-image: url(imsges/7.jpg);
background-size: 480px 280px;
background-repeat: no-repeat;
border-radius: 20px;
box-shadow: 6px 6px 6px 6px;
}
.text{
color: brown;
text-indent: 2em;
line-height: 2em;
}
</style>
</head>
<body>
<div>
<h3 style="color: brown;text-align: center;font-size: 24px;" onmouseover="chanage(this)" onmouseout="old(this)">唐声的故事</h3>
<p>
这个笑话好内涵,你懂了没?04月29日0个评论 0人喜欢
悟空和唐僧一起上某卫视非诚勿扰,悟空上台,24盏灯全灭。理由:1.没房没车只有一根破棍. 2.保镖职业危险.3.动不动打妖精,对女生不温柔. 4.坐过牢,曾被压五指山下500年。唐僧上台,哗!灯全亮。 理由:1.公务员; 2.皇上兄弟,后台最硬 3.精通梵文等外语 4.长得帅 5.最关键一点:有宝马!
</p>
</div>
<script type="text/javascript">
function chanage(element){
element.style.font-size ='20px'
element.style.color 'brown'
}
function old(element){
element.style.font-size= '20px'
element.style.color = 'brown';
}
</script>
</body>
</html>