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 {
scale: 0.3;
}
#unspecifed-from {
scale: 0.8;
}
#base-value-from {
scale: 0.5;
}
#unspecifed-to {
scale: 0.4;
}
#base-value-to {
scale: 0.3;
}
</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>