Newer
Older
minerva / Tests / LibWeb / Layout / input / abspos-box-with-block-level-sibling.html
@minerva minerva on 13 Jul 280 bytes Initial commit
<!DOCTYPE html><style>
* {
  border: solid 5px black;
}
.static {
  height: 200px;
  width: 200px;
  background: green;
}
.absolute {
  position: absolute;
  height: 200px;
  width: 100px;
  background: blue;
}
</style><div class="static"></div><div class="absolute"></div></div>