CSS之 min-width min-height 对 inline元素如span无效
上面有个<span style="min-width:100px; min-height:100px; background:blue" ></span> 看不到, 宽高依旧为0
演示代码
<!doctype html>
<body style="font-size:30px;" >
<div>
<span style="min-width:100px; min-height:100px; background:blue" ></span>
<div>上面有个<span style="min-width:100px; min-height:100px; background:blue" ></span> 看不到, 宽高依旧为0 </div>
<div>说明 min-width min-height 对 inline 元素 无效</div>
</div>