奥运五环

偶尔善良 提交于 2020-02-20 05:44:24

<!DOCTYPE  html>

<html>

  <head>

     <meta charset="UTF-8">

     <title>奥运五环</title>

     <style type="text/css">

        div:first-child{

          color:steelblue;

        }

        div:nth-child(2){

          clolo:black;

        }

        div:nth-child(3){

          clolo:red;

        }

        div:nth-child(4){

          clolo:yellow;

          transform: translateX:(240px)  translateY(-250px);

        }

        div:nth-child(5){

          clolo:green;

          transform: translateX:(240px)  translateY(-250px);

        }

     </style>

  </head>

  <body>

     <div>

       北

     </div> 

     <div>

       京

     </div>

     <div>

       欢

     </div>

     <div>

       迎

     </div>

     <div>

       你

     </div>

  </body>

</html>

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!