gpt4 book ai didi

html - 是什么让我的代码在 Safari 中看起来不同?

转载 作者:太空宇宙 更新时间:2023-11-04 06:35:09 25 4
gpt4 key购买 nike

我的代码中发生了一些奇怪的事情。当我在 chrome 中运行它时,它看起来应该是这样的:

enter image description here

当我在 Safari 中运行它时,设置按钮会改变位置。

enter image description here

我确定我遗漏了一些前缀,如果有人能指出这一点,我会很高兴:)

这是我的代码:

/* NOT ACTUALLY NEEDED */
body {
background-color: rgb(10, 10, 10);
font-family: Lato;
}

/* ACTUAL STYLES */
:root {
--border-radius: 5px;
--text-color: rgb(207, 207, 207);
--background-color: rgb(97, 97, 97);
--background-hover-color: rgb(131, 131, 131);
--font-size: 10pt;
}


#sectionTitle {
background-color: rgb(78, 78, 78);
border-top-left-radius: var(--border-radius);
border-top-right-radius: var(--border-radius);
display: flex;
height: auto;
justify-content: space-between;
padding: 10px 5px;
position: relative;
}
#sectionTitle > div {
display: inline-block;
font-size: 11pt;
}

#timeSpan {
color: var(--text-color);
height: 30px;
line-height: 30px;
vertical-align: middle;
}

#controls {
text-align: right;
width: auto;
margin-right: 10px;
}

#controls > div {
display: inline-block;
}

#sectionBody {
background-color: rgb(78, 78, 78);
border-bottom-left-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
height: 200px;
}


.wrapperOrContainer {
background-color: var(--background-color);
border-radius: var(--border-radius);
height: 30px;
overflow: hidden;
}

.control_buttonOrInput {
background-color: transparent;
border: none;
color: var(--text-color);
font-size: 10pt;
height: 100%;
margin: 0;
outline: none;
padding: 0 10px;
text-align: center;
transition: background-color .3s;
}
.control_buttonOrInput:hover {
background-color: var(--background-hover-color);
}

#dateSelect_container > input {
width: 70px;
padding: 0 3px;
}

#settings_button_wrapper { width: 30px; }
#settings_button_wrapper > button {
height: 100%;
position: relative;
width: 100%;
}
#settings_button_wrapper > button > img {
bottom: 0;
height: 20px;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="./index.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
</head>
<body>
<div id="section">
<div id="sectionTitle">
<div id="timeSpan">KW 3 - Jan 2019</div>
<div id="controls">
<div id="timeSpanSelect_wrapper" class="wrapperOrContainer">
<button class="control_buttonOrInput">Woche</button>
</div>
<div id="today_button_wrapper" class="wrapperOrContainer">
<button class="control_buttonOrInput">Heute</button>
</div>
<div id="dateSelect_container" class="wrapperOrContainer">
<button class="control_buttonOrInput">◀</button><!--
--><input type="text" value="21.01.2019" class="control_buttonOrInput"><!--
--><button class="control_buttonOrInput">▶</button>
</div>
<div id="settings_button_wrapper" class="wrapperOrContainer">
<button class="control_buttonOrInput"><img src="./settings.png" alt=""></button>
</div>
</div>
</div>
<div id="sectionBody"></div>
</div>
</body>
</html>

最佳答案

由于控件 div 内的 div 显示为 inline-block,您可以使用 vertical-align property在 Safari 中定位它们。

#controls > div {
display: inline-block;
vertical-align: top;
}

关于html - 是什么让我的代码在 Safari 中看起来不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54306620/

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