2 CSS3
2 CSS3
/* [Link] (combinaison) */
[Link] { background: #fff0db; }
localhost/2025-2026/resume/CSS_3.html 1/7
01/06/2026 22:40 CSS3 - Annexe 2025 (Sélecteurs & Propriétés) | Lycée Cité Des Journalistes
/* Propriétés typographiques */
.texte-style {
font-family: 'Segoe UI', Arial, sans-serif;
font-weight: bold; /* normal, bold, bolder, lighter */
font-style: italic;
font-size: 20px;
font: italic bold 20px 'Segoe UI'; /* super-propriété font */
text-align: center;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
text-transform: uppercase; /* lowercase, capitalize */
color: #1f5e7e;
}
📄 APERÇU TEXTE
EXEMPLE
EXEMPLE DE
DE STYLE
STYLE TEXTE
TEXTE
[Link]-css {
list-style-type: square;
// circle | square | upper-roman | lower-alpha
list-style-position: inside;
list-style-image: url('[Link]');
/* image comme marqueur */
list-style: circle inside;
/* super-propriété */
}
📌 TYPES DE LISTES
🖌️ 4. Propriétés d’arrière‑plan
.fond {
background-color: #d9eef5;
background-image: url('[Link]');
background-repeat: repeat-x;
background-size: contain;
background: #d9eef5 url('[Link]') no-repeat center/cover;
}
localhost/2025-2026/resume/CSS_3.html 3/7
01/06/2026 22:40 CSS3 - Annexe 2025 (Sélecteurs & Propriétés) | Lycée Cité Des Journalistes
🔄 5. Transformation (transform)
.transform-demo {
transform: rotate(10deg) scale(1.05) translate(10px, 0);
}
.transform-demo:hover {
transform: skew(5deg, 2deg) scale(1.1);
}
🔁 SURVOLEZ L A CARTE
[Link]-filtre {
filter: grayscale(0.8) blur(1px);
}
img:hover {
filter: invert(0.9);
}
localhost/2025-2026/resume/CSS_3.html 4/7
01/06/2026 22:40 CSS3 - Annexe 2025 (Sélecteurs & Propriétés) | Lycée Cité Des Journalistes
table-layout, border-collapse
table {
table-layout: fixed;
border-collapse: collapse;
}
Nom CSS
border-collapse:collapse fusion des bordures
.boite-demo {
width: 200px; height: 100px;
position: relative;
float: left;
padding: 12px;
margin: 8px;
box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
display: inline-block;
overflow: auto;
opacity: 0.9;
}
localhost/2025-2026/resume/CSS_3.html 5/7
01/06/2026 22:40 CSS3 - Annexe 2025 (Sélecteurs & Propriétés) | Lycée Cité Des Journalistes
.bordure-rond {
border-color: #f39c12;
border-style: solid;
border-width: 3px;
border-radius: 20px;
border: 3px dashed #2980b9;
}
⏱️ 10. Transition
.transition-card {
transition-property: all;
transition-duration: 0.4s;
transition-delay: 0.1s;
transition: background 0.3s ease 0s, transform 0.2s;
}
localhost/2025-2026/resume/CSS_3.html 6/7
01/06/2026 22:40 CSS3 - Annexe 2025 (Sélecteurs & Propriétés) | Lycée Cité Des Journalistes
@keyframes slideGlow {
0% { opacity: 0.3; transform: translateX(0); }
100% { opacity: 1; transform: translateX(20px); }
}
.anim-box {
animation-name: slideGlow;
animation-duration: 1.2s;
animation-delay: 0s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation: slideGlow 0.8s infinite alternate;
}
✨
animation
📚 Résumé CSS3 strictement conforme à l'annexe — Lycée Cité Des Journalistes (Ariana)
Exemples, aperçus visuels et code couleur (VS Code style) — M. Ben Amor Walid © 2026
localhost/2025-2026/resume/CSS_3.html 7/7