按钮练习-阴影按钮

Original 2019-02-15 11:38:14 256
abstract:<!DOCMENT TYPE> <html> <head> <title>按钮练习-阴影按钮</title> </head> <style type="text/css"> *{margin: 0;padding: 0;border: 0;} b
<!DOCMENT TYPE>
<html>
<head>
<title>按钮练习-阴影按钮</title>
</head>
<style type="text/css">
*{margin: 0;padding: 0;border: 0;}
button{width: 300px;height: 50px;margin: 20px auto;background: #F74F52;font-size: 26px;color:#fff;}
button:hover{box-shadow: 0px 5px 50px #fff inset;}
</style>
<body>
<button>阴影按钮</button>
</body>
</html>


Correcting teacher:灭绝师太Correction time:2019-02-15 13:11:14
Teacher's summary:练习的范围可以广一点,练习内容太过于简单哦

Release Notes

Popular Entries