<h2 style="display:inline-block">这是h2</h2><li style="display:inline-block">这是li</li>
也可以设为浮动元素,这样也会出现在同一行:
<h2 style="float:left">这是h2</h2><li style="float:left">这是li</li>
使用行内块:给两个h2都加上display:inline-block前提是宽度能够容纳这两个盒子。
使用浮动:给两个h2都加上float : left | right
使用定位:都加上position:absolute,通过修改left | right | top | bottom来排版。但这个方法在这里不推荐,
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)