gpt4 book ai didi

css - 定位/间距/定心表数据

转载 作者:行者123 更新时间:2023-11-28 03:59:07 25 4
gpt4 key购买 nike

我在正确居中时遇到问题。我相信整个表格都向左偏移了一点,但我真正注意到的是图标。他们应该在右边只有一根头发。我可以增加边距以将其滑过一点,但我正在寻找精确的东西。我不知道到底有多少像素偏离了我,这让我很困扰。有人能告诉我我的问题是什么吗?郑重声明,我对编码还很陌生,不太确定我开始写代码时的方向是什么。我确定 CSS 代码中存在冗余/低效。这是一个 fiddle 。

https://jsfiddle.net/smatchymo/rdxh9hd4/8/

这是代码。

<body>
<div id='filter'></div>
<div id='watchface'></div>
<div id='text'>
<table>
<tr>
<td class='times'>4:00</td>
<td id='icon' class='icons'></td>
<td class='hourTemp'>69</td>
</tr>
<tr>
<td class='times'>5:00</td>
<td id='icon1' class='icons'></td>
<td class='hourTemp'>67</td>
</tr>
</table>
</div>
<div id='timecapsule'>
<div id='permatime'></div>
<div id='time'>12:00</div>
</div>
</body>

这是 CSS:

body {
height: 100%;
width: 100%;
}

#watchface {
position: absolute;
top: 0px;
left: 0px;
height: 360px;
width: 360px;
position: absolute;
border-radius: 100%;
//background-color: black;
z-index: 0;
}

#timecapsule {
height: 360px;
width: 360px;
position: absolute;
top: 0px;
left: 0px;
border-radius: 100%;
z-index: 30;
overflow: hidden;
}

#permatime {
position: absolute;
top: -45px;
left: 105px;
height: 100px;
width: 150px;
border-radius: 5px;
//border: 1px solid white;
background-color: black;
opacity: .7;
color: white;
text-align: center;
z-index: 40;
}

#time {
font-size: 30px;
color: white;
position: absolute;
top: 10px;
left: 105px;
width: 150px;
text-align: center;
z-index: 41;
}


#filter {
position: absolute;
height: 360px;
width: 360px;
top: 0px;
left: 0px;
background-color: black;
border-radius: 100%;
opacity: .7;
z-index: 2;
}

#text {
list-style-type: none;
position: absolute;
top: 0px;
left: 0px;
width: 360px;
height: 360px;
font-size: 16px;
color: white;
z-index: 3;
//overflow: auto;
}

.icons {
height: 37px;
width: 112px;
// border: 1px solid yellow;
}

#icon {
background: url("https://icons.wxug.com/i/c/v4/chancetstorms.svg") no-repeat center;
}

#icon1 {
background: url("https://icons.wxug.com/i/c/v4/flurries.svg") no-repeat center;
}

.hourTemp {
font-size: 24px;
text-align: right;
width: 74px;
margin-right: 40px;
}

.times {
font-size: 24px;
margin-left: 40px;
text-align: left;
//border: 1px solid lime;
width: 74px;
}

table {
padding: 75px 0px 0px 0px;
margin; 0px;
width: 360px;
text-align: left;
list-style-type: none;
font-size: 32px;
}

td {
margin: 0px;
padding-top: 5px;
padding-bottom: 5px;
}

提前致谢!

最佳答案

Bahhh,我发誓我仔细检查了我的数学...我正要对我的帖子进行编辑,将表格数据的像素大小和填充相加,以使任何试图提供帮助的人都更容易和更清楚,但是我意识到一切都没有像它应该的那样添加到 360 像素。我的图标类宽度 10px 太小了......

关于css - 定位/间距/定心表数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43302743/

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