Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/78.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 新Ghost博客上的链接不只能在Chrome中使用的问题_Html_Google Chrome_Azure_Ghost Blog - Fatal编程技术网

Html 新Ghost博客上的链接不只能在Chrome中使用的问题

Html 新Ghost博客上的链接不只能在Chrome中使用的问题,html,google-chrome,azure,ghost-blog,Html,Google Chrome,Azure,Ghost Blog,我最近一直在尝试Ghost,正在将我的个人网站从Wordpress转换为Ghost。但页面呈现似乎存在一些问题。如果我将DocType更改为: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 由此: <!DOCTYPE html> 该页面至少会使用Chrome中的工作链接呈现,但会引入一些其他格式问题 我使用过W3C验证器,与一个工作正常的示例站点相比,我找不

我最近一直在尝试Ghost,正在将我的个人网站从Wordpress转换为Ghost。但页面呈现似乎存在一些问题。如果我将
DocType
更改为:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

由此:

 <!DOCTYPE html>

该页面至少会使用Chrome中的工作链接呈现,但会引入一些其他格式问题

我使用过W3C验证器,与一个工作正常的示例站点相比,我找不到新站点中明显缺少的任何内容。在Chrome和Internet Explorer中,该页面似乎也能正常工作。我正在尝试运行此新站点,但它在Azure上不工作

工作

不起作用
必须非常详细地审查CSS主题,并密切关注Z索引。看起来
footer.foot
CSS类设置了
z-index:-2
,我可以通过将其设置为
z-index:0

幻影/assets/css/style.css
footer.foot {
    width: 100%;
    background: #0F2036;
    padding: 95px 0 75px;
    position: relative;
    min-height: 220px;
    overflow: hidden;
    z-index: 0;
}