16 lines
No EOL
377 B
HTML
16 lines
No EOL
377 B
HTML
<!DOCTYPE html>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
#highlighted {
|
|
background: cyan;
|
|
color: blue;
|
|
}
|
|
::selection {
|
|
background: blue;
|
|
color: cyan;
|
|
}
|
|
</style>
|
|
<body><span id="highlighted">Text should be blue over cyan here and <span id="selected">cyan over blue here</span>.</span>
|
|
<script>
|
|
getSelection().setBaseAndExtent(selected, 0, selected, 1);
|
|
</script> |