我正在使用Shadowbox.js example code来显示带有消息“此站点仍在建设中!”的阴影框。页面加载:

<link rel="stylesheet" type="text/css" href="shadowbox.css">
<script type="text/javascript" src="shadowbox.js"></script>
<script type="text/javascript">
Shadowbox.init({
    // let's skip the automatic setup because we don't have any
    // properly configured link elements on the page
    skipSetup: true
});

window.onload = function() {

    // open a welcome message as soon as the window loads
    Shadowbox.open({
        content:    '<div id="welcome-msg">This site is still under construction!</div>',
        player:     "html",
        title:      "Welcome",
        height:     350,
        width:      350
    });

};
</script>


问题在于“此站点仍在建设中!”文本在黑色背景上以黑色字体显示。

我假设我必须摆弄CSS,所以我添加了:

div.welcome-msg{font-size:12px;padding:10px;text-align:center;color:white;}

./shadowbox/shadowbox.css,但这并不能解决问题。

有人可以告诉我要更改“此站点仍在建设中”字体颜色时该怎么做。文字变成白色?

提前致谢

最佳答案

代替“ div.welcome-msg”,请尝试“ div#welcome-msg”。

10-04 16:09