mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
15 lines
304 B
HTML
15 lines
304 B
HTML
<!DOCTYPE HTML>
|
|
<title> Ensure bottom takes effect after element is centered </title>
|
|
<style>
|
|
div {
|
|
inset: 0;
|
|
background-color: black;
|
|
margin: auto;
|
|
position: absolute;
|
|
block-size: 200px;
|
|
inline-size: 100px;
|
|
bottom: 10px;
|
|
border: 5px solid red;
|
|
}
|
|
</style>
|
|
<div></div>
|