为什么我的CSS没有得到正确处理?

时间:2017-07-26 08:21:44

标签: css

为什么这段代码(来自W3Schools):



#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}




在Microsoft Edge中显示如下:Image

对不起,如果我遗漏了一些明显的东西。 CSS代码在000Webhost

1 个答案:

答案 0 :(得分:1)

在IE甚至是Edge(Big Brother)中,你无法从其他任何地方复制粘贴css,它将解释整对" key:value"因为它只是关键。相反,如果您只想向浏览器预览(检查模式)添加一些css,请添加属性(键)并按Enter键,然后只有浏览器需要该属性的值(键)。