codecamp

CSS3 box-lines 属性

实例

规定允许 div 扩展为多行:

div
{
display:box;
box-orient:horizontal;
box-lines:multiple;
width:200px;
}

亲自试一试

浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

目前没有浏览器支持 box-lines 属性。

定义和用法

box-lines 属性规定如果列超出了父框中的空间,是否要换行显示。

提示:默认地,水平框会在单独的行中排列其子元素,而垂直框会在单独的列中排列其子元素。

默认值: single
继承性: no
版本: CSS3
JavaScript 语法: object.style.boxLines="multiple"

语法

box-lines: single|multiple;
描述
single 所有子元素会被放置在单独的行或列中。(无法匹配的元素会被视为溢出)。
multiple 允许框扩展为多行,以容纳其所有子元素。


CSS3 box-flex-group 属性
CSS3 box-ordinal-group 属性
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

CSS属性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }