Specification test cases
The test cases below are imported from the Turbo CSS specification.
They have been executed upon loading this page.
Set bottom to 1px without specifying the px unit.
t1 bottom-1
.t1.bottom-1 {
bottom: 1px;
}
Set bottom to 1px with specifying the px unit.
t1 bottom-1px
.t1.bottom-1px {
bottom: 1px;
}
Set bottom to 50% of its container.
t1 bottom-50%
.t1.bottom-50\% {
bottom: 50%;
}
Set bottom to auto.
t1 bottom-auto
.t1.bottom-auto {
bottom: auto;
}