.separator {
    border: 1px solid #000000;
    margin: 10px;
}<!DOCTYPE html>
<html lang="zh-CN">
    <head>
        <meta charset="utf-8">
        <title>Separator</title>
    </head>
    <body>
        <div>
            <span>hello</span>
            <span class="separator"></span>
            <span>world</span>
        </div>
    </body>
</html>I wonder why <span class="separator"></span> do not have margin-top and margin-bottom? The following two pictures can clearly describe my problems.
You can see separator's border is from top to bottom:
But console shows that margin-top and margin-bottom are both 10px:
So where are the margin-top and margin-bottom?


 
     
     
     
     
    