Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<meta charset=utf-8>
<link rel=author href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel=author href="https://mozilla.org" title="Mozilla">
<style>
#a {
rotate: 1deg 1 0 44;
filter: drop-shadow(81px 6px 0px red);
}
</style>
<script>
window.onload = function() {
document.getElementById("b").appendChild(document.getElementById("c"));
}
</script>
<select id="a" multiple="multiple">
<option id="b">x</option>
</select>
<div id="c" style="position: fixed; top: 0; left: 0;">
x
</div>