abstract:<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content=&qu
<html lang="en"> <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> </head> <style> * { margin: 0; padding: 0; } .box { position: relative; width: 100px; height: 300px; border: solid 1px blanchedalmond; margin: 0 auto; top: 0; transition: all 0.5s linear; cursor: pointer; } .box:hover { top: 6px; box-shadow: 0px 5px 10px darkgray; transition: all 0.5s linear; } p{ width: 17px; margin: 0 auto; padding-top: 45px; font-size: 20px; color: burlywood; } </style> <body> <div class="box"> <p>滑進(jìn)陰影立體效果</p> </div> </body> </html>
Correcting teacher:西門大官人Correction time:2019-02-17 11:25:07
Teacher's summary:作業(yè)寫的不錯(cuò),最好加下關(guān)鍵的注釋,如transition:all 0.5 linear的作用是什么等等