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="When 'margin-top' and 'margin-bottom' are set to '0' the 'bottom' value resolves to the remaining space within the containing block." />
<style type="text/css">
#div1
{
border: solid black;
height: 3in;
position: relative;
width: 3in;
}
div div
{
position: absolute;
top: 1in;
bottom: auto;
height: 1in;
margin-top: auto;
margin-bottom: auto;
background: blue;
width: 100%;
}
/*
"
'bottom' is 'auto', 'top' and 'height' are not 'auto',
then set 'auto' values for 'margin-top' and 'margin-bottom' to 0
and solve for 'bottom'
"
Therefore, bottom used value must be 1in
*/
</style>
</head>
<body>
<p>Test passes if a blue rectangle is <strong>vertically centered</strong> in an hollow black square.</p>