标签:style http io java strong ar div cti html
margin 外边距
padding 内边距
四个参数时依次表示 上 右 下 左 距离
padding:10px 5px 15px 20px;
padding:10px 5px 15px;
padding:10px 5px;
padding:10px;
wordSpacing 属性设置文本中的单词间距。
Object.style.wordSpacing=normal|length
值 | 描述 |
---|---|
normal | 默认。定义单词间的标准空间。 |
length | 定义单词间的固定空间。 |
本例改变单词间的间距:
<html>
<head>
<script type="text/javascript">
function changeWordSpacing()
{
document.getElementById("p1").style.wordSpacing="10px";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph</p>
<input type="button" onclick="changeWordSpacing()"
value="Change space between words" />
</body>
</html>
CSS margin padding wordSpacing 属性
标签:style http io java strong ar div cti html
原文地址:http://www.cnblogs.com/plzdaye/p/3947922.html