Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
margin: 10px;
background-color: black;
}
#explicit-from-and-to {
translate: 125px;
}
#unspecifed-from {
translate: 50px;
}
#base-value-from {
translate: 125px;
}
#unspecifed-to {
translate: 150px;
}
#base-value-to {
translate: 175px;
}
</style>
</head>
<body>
<div id="explicit-from-and-to"></div>
<div id="unspecifed-from"></div>
<div id="base-value-from"></div>
<div id="unspecifed-to"></div>
<div id="base-value-to"></div>
</body>
</html>