mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
19 lines
286 B
HTML
19 lines
286 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#checkbox {
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
background: -moz-linear-gradient(left, white, brown);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="checkbox">
|
|
<input type="checkbox">
|
|
</div>
|
|
</body>
|
|
</html>
|