在Web页面上,如果想模拟对话框效果,一般会给div元素添加position:fixed的样式来实现,然后给背景添加一个半透明的遮罩.如: .fixedDiv { position: fixed; top:; right:; left:; margin: 0 auto; height: 100%; width: 100%; background-color: rgba(0, 0, 0, 0.6); z-index:; } .fixedDiv .fixedContent { max-width:…