CSS margin-left 属性 详解
css3基础 2022-07-14 16:30:02小码哥的IT人生shichen
CSS margin-left 属性
实例
设置 p 元素的左外边距:
p
{
margin-left:2cm;
}
完整实例【亲自试一试】:
<html>
<head>
<style type="text/css">
p.leftmargin {margin-left: 2cm}
</style>
</head>
<body>
<p>这个段落没有指定外边距。</p>
<p class="leftmargin">这个段落带有指定的左外边距。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
(在页面底部可以找到更多实例)
CSS 语法
margin-left: length|auto|initial|inherit;
属性值
值 | 描述 |
---|---|
auto | 浏览器设置的左外边距。 |
length | 定义固定的左外边距。默认值是0。 |
% | 以包含元素宽度的百分比指定左外边距。 |
inherit | 规定应该从父元素继承左外边距。 |
技术细节
默认值: | 0 |
---|---|
继承性: | no |
版本: | CSS1 |
JavaScript 语法: | object.style.marginLeft="10px" |
更多实例
完整实例【设置文本的左外边距 1】:
<html>
<head>
<style type="text/css">
p.leftmargin {margin-left: 2cm}
</style>
</head>
<body>
<p>这个段落没有指定外边距。</p>
<p class="leftmargin">这个段落带有指定的左外边距。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
本例演示如何使用厘米值来设置文本的左边距。
完整实例【设置文本的左外边距 2】:
<html>
<head>
<style type="text/css">
p.leftmargin
{
margin-left: 25%
}
</style>
</head>
<body>
<p>This is a paragraph with no margin specified</p>
<p class="leftmargin">This is a paragraph with a specified left margin</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
本例演示如何使用百分比值来设置文本的左边距。
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
Chrome | IE / Edge | Firefox | Safari | Opera |
---|---|---|---|---|
1.0 | 6.0 | 1.0 | 1.0 | 3.5 |