DOM中的columnWidth属性用于指定列的宽度。
用法:
- 返回columnWidth属性:
object.style.columnWidth
-
设置columnWidth属性:
object.style.columnWidth = "auto | length | initial | inherit"
属性值:
- auto:缺省值。列宽将由浏览器确定
- length:指定列宽度的长度
- initial:将此属性设置为其默认值。阅读有关初始
- inherit:从其父元素继承此属性。了解有关继承的信息
例:
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green">GeeksforGeeks</h1>
<h2>Style columnWidth Property</h2>
<button onclick="GFGFun()">Click</button>
<div id="DIVid">
HTML stands for Hyper Text Markup Language.
It is used to design web pages using markup language.
HTML is the combination of Hypertext and
Markup language. Hypertext defines the link
between the web pages. Markup language is used
to define the text document within tag which
defines the structure of web pages. HTML is
a markup language which is used by the browser
to manipulate text, images and other content
to display it in required format.
</div>
<script>
function GFGFun() {
//Chrome, Safari, Opera
document.getElementById("DIVid").style.WebkitColumnWidth="50px";
// Firefox
document.getElementById("DIVid").style.MozColumnWidth="50px";
document.getElementById("DIVid").style.columnWidth="50px";
}
</script>
</center>
</body>
</html>
输出:
之前:
后:
支持的浏览器:下面列出了HTML DOM样式columnWidth属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox MozColumnWidth
- 苹果Safari
- Opera
相关用法
- HTML Style right用法及代码示例
- HTML Style top用法及代码示例
- HTML Style animationTimingFunction用法及代码示例
- HTML Style fontStyle用法及代码示例
- HTML Style textDecorationColor用法及代码示例
- HTML Style animationFillMode用法及代码示例
- HTML Style lineHeight用法及代码示例
- HTML Style visibility用法及代码示例
- HTML Style paddingRight用法及代码示例
- HTML Style paddingLeft用法及代码示例
- HTML Style paddingBottom用法及代码示例
- HTML Style paddingTop用法及代码示例
- HTML Style pageBreakBefore用法及代码示例
- HTML Style width用法及代码示例
- HTML Style pageBreakInside用法及代码示例
注:本文由纯净天空筛选整理自Vijay Sirra大神的英文原创作品 HTML | DOM Style columnWidth Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。