<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>小心情</title> <style type="text/css"> div { width: 300px; height:200px; padding: 15px; border-radius: 15px; box-shadow: 5px 5px 5px #888; background: url(img/123.jpg); background-size: 330px 230px; background-repeat: no-repeat; /*opacity:0.4;*/ } p { color:#000; text-indent: 2em; line-height: 1.5em; } p:hover { color:red; font-size: 1.1em; text-indent: 2em; line-height: 1.5em; } </style> </head> <body> <div> <p > 没有一个人可以不依靠别人而独立生活,这本是一个需要互相扶持的社会,先主动伸出友谊的手,你会发现原来四周有这么多的朋友。在生命的道路上我们更需要和其它的肢体互相扶持,一起共同成长</p> </div> </body> </html>