css 模态使用大轮廓

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 模态使用大轮廓相关的知识,希望对你有一定的参考价值。

.modal {
    /* some styles to position the modal at the center of the page */
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    line-height: 200px;
    height: 200px;
    margin-left: -150px;
    margin-top: -100px;
    background-color: #f1c40f;
    text-align: center;
   
    /* needed styles for the overlay */
    z-index: 10; /* keep on top of other elements on the page */
    outline: 9999px solid rgba(0,0,0,0.5);
}

以上是关于css 模态使用大轮廓的主要内容,如果未能解决你的问题,请参考以下文章

css 使用文本阴影完成的轮廓字体

图解模态框

如何在 CSS 中为 SVG 元素添加边框/轮廓/描边?

css 使用大纲的CSS模态

html/css - 使用带有 <img> 标签的精灵 - 如何在 Chrome 中删除轮廓?

如何增加引导模态宽度?