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 'float' property applies to elements with a display of 'table-cell' in which case the box is floated and its computed 'display' value is set to 'block'." />
<style type="text/css">
#table
{
display: table;
table-layout: fixed;
width: 100%;
}
#row
{
display: table-row;
}
#cell
{
background: blue;
display: table-cell;
float: right;
height: 1in;
width: 1in;
}
</style>
</head>
<body>
<p>Test passes if there is a filled blue square on the right side of the page.</p>