用line-block进行最小宽度的设置

发布时间:2019-10-17编辑:脚本学堂
本文介绍下,使用line-block进行设置最小宽度的方法,有需要的朋友,可以参考下。

line-block:本身是内联盒模型的存在,又具备块状盒模型的特性。
这个值导致一个元素产生一个块状盒模型(block box),而本身作为单一的内联盒模型(inline box)流动排列(flow),类似一个被替代的元素。
Display值为inline-block的元素内部形成一个块状盒模型,而本身形成类似一个内联的被替代元素。

说明:可惜IE不支持,FF也不支持。

IE下的解决方法:触发IE的layout,从而使该元素具备类似line-block的特性。

FF中的解决方法:使用moz专属属性:display::-moz-inline-box;

来看具体的例子,分别在IE与FF中浏览下面的页面,看看有什么效果?!
例子,IE中。
 

复制代码 代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN" xml:lang="zh-CN"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<meta name="keywords" content="PRcss,xhtml,html,css,js,book,脚本学堂" /> 
<meta name="description" content="脚本学堂_www.jb200.com" /> 
<title>IE中line-block的运用:最小宽度的设置 - www.jb200.com</title> 
<style type="text/css"><!-- 
.box { display:inline; zoom:1; min-width:400px; width:auto!important; width:400px; clear:right; border:1px solid #000; background:#ccc; } 
html:lang(zh-CN) .box { display:-moz-inline-box; } 
.box img { display:block; width:100px; height:300px; background:#c00; } 
--></style> 
</head> 
<body> 
<p class="box"> 
<img src="pr.jpg" /> 
</p> 
<p>脚本学堂_www.jb200.com<br/>
测试页!!!!</p> 
</body> 
</html> 

例子,FF中。
 

复制代码 代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN" xml:lang="zh-CN"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<meta name="keywords" content="PRcss,xhtml,html,css,js,book,脚本学堂" /> 
<meta name="description" content="脚本学堂_www.jb200.com" /> 
<title>FF中line-block的运用:最小宽度的设置 - www.jb200.com</title> 
<style type="text/css"><!-- 
.box { display:inline; zoom:1; min-width:400px; width:auto!important; width:400px; clear:right; border:1px solid #000; background:#ccc; }
html:lang(zh-CN) .box { display:-moz-inline-box; } /* moz-ff */
.box img { display:block; width:100px; height:300px; background:#c00; } 
--></style> 
</head> 
<body> 
<p class="box"> 
<img src="pr.jpg" /> 
</p> 
<p>脚本学堂_www.jb200.com<br/>
测试页!!!!</p> 
</body> 
</html>