-14%
Le deal à ne pas rater :
Apple MacBook Air (2020) 13,3″ Puce Apple M1 – RAM 8Go/SSD 256Go
799 € 930 €
Voir le deal

World of Graph Admin

Et s'il y en a 4? :
Ouiii

Test pour un 3ème :
Prout

Messages :
20

Date d'inscription :
24/06/2011

World of Graph
Lun 22 Aoû - 14:51
Code:
<div id="test">
  <div class="test2">
    Tabulation?
  </div>
</div>
Code:
<div id="test">
  <div class="test2">
    Tabulation?
  </div>
</div>
Code:
:root {
  --main-color : #b42828;
  --main-font-size : 15px;
  --main-title-size : 45px;
  --main-title-font : Anton, sans-serif;
  --subtitle-font : Roboto, sans-serif;
  --subtitle-size : 30px;
  --second-color : #363636;
  --third-color : #0f0f0f;
 --forth-color : #121212;
  --main-text-shadow : 3px 3px 0 #5a1212;
  --main-border-bottom : 10px solid white;
}

body {
  background : url("https://www.zupimages.net/up/17/08/dxww.png") center 100px no-repeat scroll, var(--third-color);
  padding : 0;
  margin : 0;
  font-family : Calibri;
  font-size : 17px;
  overflow-x : hidden;
}
Code:
$(document).ready(function() {
 $('#onglets li:first-child a').addClass('selected');
 $('#contenu > div:first').show().siblings().hide();
 $('#onglets a').click(function() {
 var idPa = $(this).attr('href');
 $(idPa).fadeIn(500).siblings().hide();
 $(this).addClass('selected').parent('li').siblings().children('a').removeClass('selected');
 return false;
 });
 });

Réponse Rapide


Page 1 sur 1