<!DOCTYPE html>
            <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>to do list</title>
                <script src="../vue.js"></script>
                <style>
                *{
                    margin: 0;
                    padding: 0
                }  
                li{
                    list-style: none;
                    margin-top:10px;  
                    border: 1px solid #eee;  
                    border-radius: 4px;
                    
                }
                #do{
                    width:400px;
                    border: 2px solid #ccc;
                    margin: 0 auto;  
                    padding: 5px 20px;
                }
                .red{
                    background: rgb(233, 232, 159);
                }
                .green{
                    background: rgb(108, 170, 156);
                }
                span{
                    float: left;
                }

                </style>
            </head>
            <body>
                <div >        </script>

相关文章:

  • 2021-05-05
  • 2021-11-09
  • 2022-01-14
  • 2021-11-27
  • 2021-04-08
  • 2021-12-16
  • 2021-12-04
  • 2021-07-21
猜你喜欢
  • 2021-11-26
  • 2021-03-28
  • 2021-08-19
  • 2021-08-11
  • 2021-06-01
  • 2021-10-11
  • 2021-04-13
  • 2021-06-14
相关资源
相似解决方案