Les nouvelles propriétés (suite)

  • opacity : niveau d'opacité (entre 0 et 1)

div{
background-color:red;
opacity : 0.5;
}
  • nouveau codage des couleurs en RGBA

color : rgba(100%,0,0,0.3);
  • nouveau codage HSL, HSLA

    color : hsl(100%,10%, 20%); (teinte, saturation, luminosité) �

    color : hsla(10%,20%,12%,0.6); (teinte, saturation, luminosité, alpha) �

  • @font-face : ajout d'une police

@font-face {
	 font-family: Delicious;
	font-weight: bold;
	src: url('Delicious-Bold.otf');
}
  • text-shadow : définit l'ombrage du texte

      text-shadow: 0.1em 0.1em 0.2em black;

    text-shadow: 0.2em 0.5em 0.1em #600, -0.3em 0.1em 0.1em #060, 0.4em -0.3em 0.1em #006�

Last updated