css边框样式

Original 2018-11-20 09:07:17 172
abstract:<!DOCTYPE html> <html lang="en"> <head>     <meta charset="utf-8">     <title>css边框样式</title
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>css边框样式</title>
    <style>
        div{
            width:300px;height:300px;border:1px solid #ccc;
            margin:50px auto;
            border-radius:10px;
            box-shadow:0px 15px 3px #666 inset;
            }
     </style>
     </head>
     <body>
         <div></div>
     </body>
     </html>


Correcting teacher:灭绝师太Correction time:2018-11-20 09:09:18
Teacher's summary:测试的太简单啦,可以在全面一点,带点效果!

Release Notes

Popular Entries