[Racine des codes] [Page précédente]

text ombre

/Html JavaSript/css/text ombre.html
<style type="text/css">
h1 {
  position: absolute; /* => sort du flux */
  color: blue;
  margin-left: -2px;
  margin-top: -2px;
}
h1.ombre {
  color: gray;
  margin-left: 0px;
  margin-top: 0px;
}
</style>

<div>div avant</div>
<div>div avant</div>
<div>div avant</div>
<h1 class="ombre">texte ombré</h1><h1>texte ombré</h1>
<div>div après (!!)</div>
<div>div après (!!)</div>
<div>div après (!!)</div>
[edit]