亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

點(diǎn)擊變色的圓球

original 2019-01-20 00:17:58 266
abstrait:<!DOCTYPE html> <html> <head> <meta charset="UTF-8">     <title>CSS邊框總結(jié)</title>     <link rel=&q
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
    <title>CSS邊框總結(jié)</title>
    <link rel="shortcut icon" type="image/x-icon"   href="../xuexi/static/images/08131844.jpg"/>
    <link rel="stylesheet" type="text/css" href="../xuexi/static/css/css2.css"/>
<style type="text/css">
    *{
        padding: 0px;
        margin: 0px;
    }
    body{
        background-color:tan;
    }
    .box{
        width: 500px;
        height: 300px;
        border: 1px solid  #ccc;
        margin: 0 auto;
        margin-top: 20px;
        border-radius: 15px;
        box-shadow:10px 10px 3px  #cccc;
        background-color:orange;
    }
    #boxa{
        width: 120px;
        height: 120px;
        background-color:darkviolet;
        border-radius: 60px;
        margin: 80px;
        box-shadow:0px 6px 30px #ccc  inset;
        text-align: center;
    }
    #boxa1{
        padding:40px;
        color:yellow;
        font-weight: bold;
        font-size: 20px;
    }
    #boxa:hover{
        background-color: fuchsia;
        box-shadow:10px 5px 3px rgb(199, 228, 207);

    }
</style>
</head>
<body>
    <div class="box">
       <div id="boxa"> 
          <div id="boxa1">圓球</div>
       </div>
    </div>
</body>
</html>

Professeur correcteur:韋小寶Temps de correction:2019-01-20 09:22:47
Résumé du professeur:案例想的很不錯(cuò) 很簡單基礎(chǔ)的一個(gè)小案例 課后沒事要記得多練習(xí)哦

Notes de version

Entrées populaires