Files
ClassContent/历届学生/韩想/项目开发/练习项目/结构练习/clothes.html
2024-09-27 02:06:13 +08:00

23 lines
750 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            p{margin:0;padding:0;}
            div{width:800px;height:100px;background:#ccc;}
            p{display: inline-block;vertical-align: middle;}
            span{display: inline-block;height:100%;vertical-align: middle;}
        </style>
         
    </head>
    <body>
        <div>
            <p>
                文本内容<br />
                第二行
            </p>
            <span></span>
        </div>
    </body>
</html>