15 lines
310 B
HTML
15 lines
310 B
HTML
<!DOCTYPE HTML>
|
|
<title> Ensure top doesn't take effect if margin isn't auto </title>
|
|
<style>
|
|
div {
|
|
inset: 0;
|
|
background-color: black;
|
|
margin: auto;
|
|
margin-bottom: 10px;
|
|
position: absolute;
|
|
block-size: 200px;
|
|
inline-size: 100px;
|
|
border: 5px solid red;
|
|
}
|
|
</style>
|
|
<div></div>
|