You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="The 'Margin' property applies to elements with a display of inline. Only horizontal margins apply to inline non-repleaced elements; vertical margins do not and will not apply to inline non-repleaced elements." />
<style type="text/css">
div
{
display: inline;
}
#div1
{
border-left: 5px solid blue;
border-right: 5px solid blue;
}
div div
{
border-left: 5px solid orange;
border-right: 5px solid orange;
margin: 50px;
}
</style>
</head>
<body>
<p>Test passes if there is space between the blue and orange lines.</p>