问答详情
源自:2-2 JavaScript-警告(alert 消息对话框)

让alert弹出框居中

能不能让alert弹出的窗口始终居中呢

提问者:yc2016 2016-07-15 17:36

个回答

  • 慕数据3095936
    2016-07-15 19:52:19
    已采纳

    .Absolute-Center{

    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    }       

    应该是这样吧

  • 大块吃肉188
    2016-07-21 10:45:54

    我试了试发现不会,不知道具体把居中的代码添加在哪里 ,题主能贴个代码么?

  • 慕粉3604008
    2016-07-15 20:14:49

    alert所在的 .类名 或#id名{

                            margin:0 auto;

    }

  • zxd95
    2016-07-15 19:17:39

    添加个绝对居中样式


    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;