欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

css column-fill属性怎么用

程序员文章站 2022-03-15 11:17:59
...
css column-fill属性怎么用

css column-gap属性定义及用法

在css中,column-gap属性通常和columns、column-count等分列属性一起使用,用来设置元素内容分列(多列布局)后列与列之间的距离

css column-gap属性语法格式

css语法:column-gap: length / normal;(例:column-gap:36px;)

JavaScript语法:object.style.columnGap="40px"

css column-gap属性值说明

length:自定义列之间的间距

normal:列之间的普通差距

实例

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8" />

<title>css3 column-gap属性设置列之间的距离笔记</title>

<style type="text/css">

body{background: #ddd;}div{width: 400px;border:1px solid blueviolet;}

.gap{column-count:3;column-gap:60px;}

.gap_normal{column-count:3;column-gap:normal;}

</style>

</head>

<body>

<div class="gap">column-gap:60px;演示,将列与列之间的距离设置为60px</div>

<div class="gap_normal">column-gap:normal;演示,将列与列之间的距离设置普通距离!</div>

</body>

</html>

运行结果

css column-fill属性怎么用

以上就是css column-fill属性怎么用的详细内容,更多请关注其它相关文章!