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