Maison > Article > interface Web > Comment définir la transparence de div en HTML
Comment définir la transparence div en HTML : 1. En utilisant l'attribut opacity, il vous suffit d'ajouter le style "opacity: transparent value;" à l'élément div. 2. En utilisant l'attribut filter, il vous suffit d'ajouter "filter" ; :opacity(transparency) à l'élément div Value);" le style suffit.
L'environnement d'exploitation de ce tutoriel : système Windows7, version CSS3&&HTML5, ordinateur Dell G3.
html Définissez la transparence de div
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> .box1{ width: 300px; height: 200px; background-color: yellow; } .box2{ width: 100px; height: 100px; background-color: green; } </style> </head> <body> <div class="box1"> <div class="box2"></div> </div> </body> </html>
1 Utilisez le paramètre d'attribut d'opacité. Plus la valeur de transparence est petite, plus elle est transparente.
.box2{ width: 100px; height: 100px; background-color: green; opacity: 0.8; }
.box2{ width: 100px; height: 100px; background-color: green; opacity: 0.5; }
.box2{ width: 100px; height: 100px; background-color: green; opacity: 0.2; }
2, plus la valeur de transparence est petite, plus elle est transparente. filter:opacity(透明度值);
.box2{ width: 100px; height: 100px; background-color: green; filter:opacity(0.5); }
.box2{ width: 100px; height: 100px; background-color: green; filter:opacity(0.1); }Tutoriel recommandé : "
Tutoriel vidéo HTML"
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!