Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
/* before selection */
.shadow2 {
text-shadow: 1px 1px 1px;
}
.shadow3 {
text-shadow: 1px 2px 4px #000;
}
.shadow4 {
text-shadow: 1px 2px 4px;
}
/* after selection */
.shadow1::-moz-selection {
text-shadow: 1px 1px 1px;
background-color: transparent;
}
.shadow1::selection {
text-shadow: 1px 1px 1px;
background-color: transparent;
}
#shadow2::-moz-selection {
text-shadow: none;
background: #fffae6;
}
.shadow2::selection {
text-shadow: none;
background: #fffae6;
}
.shadow3::-moz-selection {
text-shadow: 1px 1px 2px #222;
}
.shadow3::selection {