企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
~~~ <title>Document</title> <style> div{ display: block; } a{ /* display: block; width:100px; height: 100px; */ background-color: red; } input{ display: inline-block; } </style> </head> <body> <!-- 块 div,p,h1~h6,ul,li,dl,dt,dd display:block --> <div>div</div> <p>p</p> <!-- 内联 a,i,em,span,strong display:inline --> <a href="#">a</a> <em>em</em> <br> <!-- 内联块 input,button,img --> <input type="text"> </body> ~~~