margin和profit区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了margin和profit区别相关的知识,希望对你有一定的参考价值。

margin和profit区别:指代不同、用法不同、侧重点不同。

1、指代不同

margin:指边缘;利润。

profit:指利润;利益。

2、用法不同

margin:有“边”“边沿”的意思。指书页的空白边缘,也可指物体的边缘。用在比喻中意思是“留有余地”。

profit:profit作为名词的意思是“利润”“赢利”,转化为动词则表示“从…中获利”“对…有好处”。指获得明显的物质利益,或者增加其财富、知识等的储存。 

profit是及物动词,接名词、代词作宾语,还可接双宾语。可用于被动结构。用作不及物动词,常与介词by, from等连用。 

profit表示“利益”时,只有单数形式,前不可加a。而表示“利润”时,可同时有单复数形式。 

3、侧重点不同

margin:margin强调的是百分比

profit:profit强调的是绝对值。

参考技术A 简单来说,margin是百分比,profit是绝对值。
比如:收入是100, 成本是80,则毛利(gross profit)是20,扣除其他税费之后净利润(net profit)假设是10,那么毛利率(Gross profit margin)=20/100=20%,净利率(Net profit margin)=10/100=10%。

以下是英文版详细解释:

Margin is used to compare A relative to B, where A is part of B. Margin is usually stated as a percentage.
Followings are two examples of margins:
1. Gross profit margin = Gross profit / revenue;
2. Net profit margin = Earning after tax / revenue;
In accounting, a simple expression of a profit and loss statement is as follows:
Revenue 1,000
Cost of good sold -900
Gross PROFIT 100
Operating expenses -10
other expenses -2
tax -3
net PROFIT after tax 85
then, Gross profit MARGIN = 100/1000 = 10%.
Net profit MARGIN = 85/1000 = 8.5%
--------------
PROFIT is a certain amount of benefit obtained from operations of a company or from trading activities. Different from a margin, profit is stated in a full monetary value. In the above example, the gross profit MARGIN is 10% but the Gross PROFIT is 100; and net profit MARGIN is 8.5% but the Net PROFIT after tax is 85.本回答被提问者和网友采纳
参考技术B 简单来说,margin是百分比,profit是绝对值。
比如:收入是100, 成本是80,则毛利(gross profit)是20,扣除其他税费之后净利润(net profit)假设是10,那么毛利率(Gross profit margin)=20/100=20%,净利率(Net profit margin)=10/100=10%。

以下是英文版详细解释:

Margin is used to compare A relative to B, where A is part of B. Margin is usually stated as a percentage.
Followings are two examples of margins:
1. Gross profit margin = Gross profit / revenue;
2. Net profit margin = Earning after tax / revenue;
In accounting, a simple expression of a profit and loss statement is as follows:
Revenue 1,000
Cost of good sold -900
Gross PROFIT 100
Operating expenses -10
other expenses -2
tax -3
net PROFIT after tax 85
then, Gross profit MARGIN = 100/1000 = 10%.
Net profit MARGIN = 85/1000 = 8.5%
--------------
PROFIT is a certain amount of benefit obtained from operations of a company or from trading activities. Different from a margin, profit is stated in a full monetary value. In the above example, the gross profit MARGIN is 10% but the Gross PROFIT is 100; and net profit MARGIN is 8.5% but the Net PROFIT after tax is 85.

margin和padding的用法与区别--以及bug处理方式

margin和padding的用法:

(1)padding (margin) -left:10px;          左内 (外) 边距
(2)padding (margin) -right:10px;          右内 (外) 边距
(3)padding (margin) -top:10px;         上内 (外) 边距
(4)padding (margin) -bottom:10px;        下内 (外) 边距
(5)padding (margin) :10px;             四边统一内  (外) 边距
(6)padding (margin) :10px 20px;         上下、左右内  (外) 边距
(7)padding (margin) :10px 20px 30px;        上、左右、下内  (外) 边距
(8)padding (margin) :10px 20px 30px 40px;    上、右、下、左内  (外) 边距

margin的用法说明:

(1)需要在border外侧添加空白时,

(2)空白处不需要有背景(色)时,

(3)上下相连的两个盒子之间的空白需要相互抵消时,比如15px+20px的margin,将得到20px的空白。

 

padding的用法说明:

(1)需要在border内侧添加空白时(往往是文字与边框距离的设置),

(2)空白处需要背景(色)时,

(3)上下相连的两个盒子之间的空白希望等于两者之和时,比如15px+20px的padding,将得到35px的空白。

 

margin和padding的区别:

margin是盒子的外边距,即盒子与盒子之间的距离,而padding是内边距,是盒子的边与盒子内部元素的距离。(margin是用来隔开元素与元素的间距;padding是用来隔开元素与内容的间隔。margin用于布局分开元素使元素与元素互不相干;padding用于元素与内容之间的间隔,让内容(文字)与(包裹)元素之间有一段“呼吸距离”。)

 

maegin的bug处理方式:

1、浏览器在默认状态下会对margin设置初值,所以在没有对div设置margin的情况下,div会出现一定的间隔;

2、margin-top会经常出现bug,所以推荐只在兄弟元素之间使用margin,而在父子元素之间使用padding;

3、竖直方向上会出现margin值叠加情况,此时margin的取值方式是取上下两个元素之间较大的margin值;

4、IE6在满足以下四个条件的情况下会触发横向的双倍边距:(1)元素是浮动的(2)元素必须要有横向的margin(3)元素必须是块元素|(4)浏览器是ie6

6、当两个盒子为兄弟关系时,相邻的地方同时使用了外边距,只取较大的那个外边距值。

 

padding的bug处理方式:

1、当两个盒子套一起时,给蓝色盒子写padding-top:50px;时,两个盒子之间变不会产生上距离.而是给蓝色盒子的高添加了50像素.(见,图2)这时,就需要给红色添加一个盒子。box-sizing:border-box

2、padding不能给负值.

 

以上是关于margin和profit区别的主要内容,如果未能解决你的问题,请参考以下文章

CSS中margin和padding的区别

CSS中margin和padding的区别

margin和padding的区别和用法

css中margin和padding的用法区别

Margin和Padding的区别

android:padding和android:margin的区别