Newer
Older
minerva / Tests / LibWeb / Layout / input / flex / align-items-normal.html
@minerva minerva on 13 Jul 206 bytes Initial commit
<!doctype html><style>
  body {
    display: flex;
    flex-direction: column;
    align-items: normal;
  }
  div {
    width: 100px;
    height: 100px;
    background: orange;
  }
</style><body><div></div>