废话不多说,直接上代码:

一、CSS

.overlayBackground {
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    background-color: #555555;
    z-index: 1001;
    -moz-opacity: 0.7;
    opacity: .70;
    filter: alpha(opacity=70);
}
.contentDivDialog {
    display: none;
    position: absolute;
    top: 10%;
    left: 10%;
    border: 16px solid lightblue;
    background-color: white;
    z-index: 1002;
    overflow: auto;
}
View Code

相关文章:

  • 2021-10-28
  • 2022-12-23
  • 2021-06-13
  • 2022-12-23
  • 2021-07-31
  • 2022-03-10
  • 2021-12-31
猜你喜欢
  • 2021-05-27
  • 2022-12-23
  • 2021-09-06
  • 2022-12-23
  • 2022-12-23
  • 2021-07-03
相关资源
相似解决方案