gpt4 book ai didi

html - 主题在第一次加载时无法正确显示图像

转载 作者:行者123 更新时间:2023-11-28 18:44:08 26 4
gpt4 key购买 nike

问题还是没有解决,不知道是什么原因。然而 ;换个主题可以解决.............................................

我对 tumblr 的主题有疑问。它从第一次开始就没有“工作”。这并不意味着它不起作用。 它只有在我刷新页面后才有效。

我第一次加载页面;内容的大部分元素(图像)都没有样式;它们相互重叠,这很烦人

这是主题

http://tinypaste.com/fa31b3

如果我没记错的话;这是对图像负责。

 .entry img { 
{block:IndexPage}
width: {block:IfNot2Columns}240px{/block:IfNot2Columns}{block:If2Columns}500px{/block:If2Columns};
{/block:IndexPage}
{block:PermalinkPage}
width:500px;
{/block:PermalinkPage}
}

你们能帮帮我吗。任何想法将不胜感激

最佳答案

原因是浏览器会缓存您使用以前的图像样式的样式,因此浏览器对您的图像没有实际规则(只有以前的样式)。

我为您提供了更具可读性和灵 active 的解决方案,它将无一异常(exception)地工作:

Tumblr 标记:

<body class="
{block:IndexPage}
index-page
{block:IfNot2Columns}not-twocolumns{/block:IfNot2Columns}
{block:If2Columns}twocolumns{/block:If2Columns}
{/block:IndexPage}
{block:PermalinkPage} permalink-page{/block:PermalinkPage}
">

CSS:

.index-page.not-twocolumns .entry img {
width: 240px;
}

.index-page.twocolumns .entry img {
width: 500px;
}

.permalink-page .entry img {
width: 500px;
}

关于html - 主题在第一次加载时无法正确显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10821747/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com