这篇文章主要介绍了设置span宽度高度的方法,需要的朋友可以参考下
span宽度高度设置
复制代码代码如下: <!DOCTYPE html> <html xmlns="<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>"> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <title> span宽度高度设置 </title> <style> .inner_span{ width:150px; height:100px; border:1px solid #000; </p>
<p> display:-moz-inline-box; display:inline-block; } </style> </head> <body> 我在SPAN标签外<span class="inner_span">我在SPAN标签内</span>我在SPAN标签外 </body> </html>
|