gpt4 book ai didi

html - 页眉和 Logo 的内联 CSS 在 Chrome 和 IE 中看起来不同

转载 作者:行者123 更新时间:2023-11-28 19:14:21 25 4
gpt4 key购买 nike

我有下面的 HTML,带有简单的标题和带有内联 CSS 的 Logo 。我希望在 Chrome 和 IE 浏览器中获得相同的外观。

<html>
<title>Workflow Report </title>

<head>
<style>
table {
border-collapse: collapse;
width: 100%;
}

th,
td {
text-align: left;
padding: 8px;
}

thead input {
width: 100%;
padding: 3px;
box-sizing: border-box;
}

/* Header and Logo
-------------------------------------------------------------- */
.navbar {

margin: auto;
background: #a3a3a314;
color: #285a8b;
display: flex;
align-items: center;
justify-content: center;
}

.main-logo {
padding: 20px;
flex: 1 0 0;
text-align: right;
}

#logo {
max-width: 120px;
width: 100%;
height: auto;
}

/* Inline bulleted lists
-------------------------------------------------------------- */

hr.style14 {
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}
</style>
</head>
<SCRIPT>

</SCRIPT>

<body>
<div id="content">

<nav class="navbar">
<div>
<h3 style="font-family:arial black;color: #285a8b;">Report</h3>
</div>
<div class="main-logo"><a href="#" class="navbar-brand"><img class="logo" id="logo" src="https://seeklogo.com/images/T/tenaga-nasional-logo-A5D1C313B0-seeklogo.com.png" alt="SC2 Logo"></a></div>

</nav>

<hr class="style14">

</div>
</body>

chrome 外观符合预期 - 即背景颜色为 #a3a3a314;和右侧的 Logo ,但 IE 没有。

但 IE 看​​起来不一样。

如何获得与 IE 中的 chrome 相同的 View ? (右端有背景色和logo)

最佳答案

您可以尝试像这样为导航栏添加前缀:

.navbar {
margin: auto;
background: #a3a3a314;
color: #285a8b;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}

关于html - 页眉和 Logo 的内联 CSS 在 Chrome 和 IE 中看起来不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58657207/

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