w3c div教学内容中的 div 透明模块

来源:互联网 发布:江苏省软件企业协会 编辑:程序博客网 时间:2024/05/17 08:20
<!DOCTYPE html><html><head><style>div.background{  width: 400px;  height: 266px;  background: url('/i/tulip_peach_blossom_w.jpg') no-repeat;  border: 1px solid black;}div.transbox{  width: 338px;  height: 204px;  margin:30px;  background-color: #ffffff;  border: 1px solid black;  /* for IE */  filter:alpha(opacity=60);  /* CSS3 standard */  opacity:0.6;}div.transbox p{  margin: 30px 40px;}</style></head><body><div class="background"><div class="transbox"><p>This is some text that is placed in the transparent box.This is some text that is placed in the transparent box.This is some text that is placed in the transparent box.This is some text that is placed in the transparent box.This is some text that is placed in the transparent box.</p></div></div></body></html>
0 0
原创粉丝点击