| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | <!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title>    <style>        .p {            width: 600px;            height: 600px;            background-color: grey;            border: 1px solid red;        }        .s {            width: 200px;            height: 200px;            background-color: #0d8ddb;            /*margin-left: auto;*/            /*margin-right: auto;*/            /*margin-top: auto;*/            /*margin-bottom: auto;*/            margin: auto 0;        }        .one {            color: red;            font-size: 50px;        }        .two {            color: green;        }        .hello li {            color: red;            list-style-position: outside;            counter-reset: hello 1;        }    </style></head><body><!--<div class="p">--><!--<div class="s"></div>--><!--</div>--><!--<input type="button" value="你好" style="display: inline;margin-top: 12px;width: 500px">--><div class="one">    <div class="two"><span>你好</span></div></div><div class="hello">    <ul>        <li>啦啦啦啦<a href="">百度</a></li>    </ul></div></body></html>
 |