css margin-right属性怎么用
程序员文章站
2022-03-09 12:41:25
...
css margin-right属性定义及用法
在css中,margin-right属性是使用来设置元素的右外边距,属性值可以是负数。如果我们需要同时设置元素的上下左右的外边距,我们可以使用margin属性来设置。
css margin-right属性语法格式
css语法:margin-right:auto/length/%/inherit
JavaScript语法:object.style.marginRight="10px"
属性值说明
auto :浏览器设置的右外边距
length:定义固定的右外边距,默认值是 0
%:定义基于父对象总高度的百分比右外边距
inherit:从父元素继承margin-right属性的值
实例
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>css margin-right属性设置元素的左外边距</title> <style type="text/css"> p{border: 1px solid royalblue;height:100px;width:120px;float:left;} #mr1 {margin-right:20px;} #mr2 {margin-right:50px;} </style> </head> <body> <p id = "mr1">margin-right属性演示</p> <p id = "mr2">margin-right属性演示</p> <p>一个margin-right属性演示 </p> </body> </html>
运行结果
以上就是css margin-right属性怎么用的详细内容,更多请关注其它相关文章!
上一篇: Linux的内存管理介绍
推荐阅读
-
ACDsee怎么用?acdsee做图像属性的教程
-
VS2019怎么设置CSS的默认属性?
-
2个属性用CSS实现图片自适应浏览器
-
怎么用css属性屏蔽鼠标事件(鼠标点击可穿透上层元素)
-
关于用图片做无序列表的项目符号,我做出来怎么是这个样子?_html/css_WEB-ITnose
-
怎么用dreamweaver做一个可以换肤的界面_html/css_WEB-ITnose
-
发现一个特效会让你有意思,有人知道这个用css可以做出来吗,怎么做?_html/css_WEB-ITnose
-
symfony怎么用css来控制表单的样式?
-
怎么用JavaScript或css在thinkPHP的模板中显示树形结构
-
jquery 固定列。怎么用% 随浏览器大小 导航条显示出来,看图不用datagrid_html/css_WEB-ITnose