设置span宽度高度的方法
发布时间:2016-12-27 来源:查字典编辑
摘要:span宽度高度设置span宽度高度设置.inner_span{width:150px;height:100px;border:1pxsol...
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>我在SPAN标签内</span>我在SPAN标签外
</body>
</html>