gpt4 book ai didi

css - 如何使文本从 x 轴上的空间位置开始(不同的 div)

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

这似乎是一个简单的问题并且可能有一个简单的解决方案,但我想知道如何从 x 轴上的空间点开始(它们是两个不同的 div)从按钮中获取两个文本元素。我指的是下图中按钮的文本。

Image

如何让文本“Dashboard”和“A new button”在 x 轴上的相同位置开始?

* {
margin: 0;
padding: 0;
}

body {
background-color: #ced4da;
font-family: sans-serif;
}

.wrapper {
height: 100vh;
}

input[type="button"] {
border: none;
background-color: Transparent;
outline: none;
height: 20px;
width: 92%;

font-size: 13px;
font-weight: regular;
color: white;
}

.side-bar {
display: flex;
flex-direction: column;

width: 17%;
height: 100%;
background-color: #272C32;
}

.sub-title {
margin-top: 10%;
margin-left: 7.5%;
}

.sub-title h3 {
color: #B9B9B9;
font-size: 13px;
font-weight: lighter;
}

.splitter {
display: flex;
align-self: center;

width: 85%;
height: 0.5px;
background-color: grey;
margin-top: 12px;
margin-bottom: 4%;
}

.button {
position: relative;
margin-left: 7.5%;
margin-bottom: 3%;
}

.button form i {
color: white;
font-size: 14px;
transition: 0.3s;
position: absolute;
left: 0px;
top: 0px;
padding: 5px 0px;
}

.button input:hover+i {
color: dodgerblue;
}
<div class="wrapper">
<div class="side-bar">
<div class="sub-title">
<h3>ADMIN TOOLS<h3>
</div>
<div class="splitter"></div>
<div class="button">
<form>
<input type="button" value="Dashboard" onclick="window.location.href='http://www.google.com'"/>
<i class="fas fa-tachometer-alt fa-lg" aria-hidden="true"></i>
</form>
</div>
<div class="button">
<form>
<input type="button" value="A new button" onclick="window.location.href='http://www.google.com'"/>
<i class="fas fa-hand-paper fa-lg" aria-hidden="true"></i>
</form>
</div>
</div>
<div class="nav-bar"></div>
</div>

如果您有时间,我的 CSS 代码看起来如何?我仍在学习,如果您不介意的话,我也希望得到一些反馈 :) 谢谢!

最佳答案

您所要做的就是输入 <div>你周围的元素 <form>元素 s,然后将它的位置设置到你想要的任何位置,它的 text-align: left; .顺便说一句,您的 CSS 看起来很棒,请记住有些事情可以简化,例如

  • {margin: 0; padding: 0;}

这很好,但是*body相同,即使它的记录不同。 *适用于所有内容,但内容仅在 <body> 中显示元素。

不过还是挺好看的,继续加油!

附言如果可以的话,我会投票给你,但我没有选票了 - 我明天再做

关于css - 如何使文本从 x 轴上的空间位置开始(不同的 div),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50939206/

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