gpt4 book ai didi

html - 在 html/css 中对齐按钮

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

我试图让我的按钮在我的显示中对齐。如果我尝试使用 float: right; 没有任何反应。您可以在下面找到屏幕截图:enter image description here

所以我试图让这些按钮在彼此下方排成一排。我也尝试过使用一张 table ,但是那把我的 hrefs 设计搞砸了在这里你可以找到我的 html:

        <div class="LineField"> 
<p>Axo 800</p>
<a href="Planning.php?id=1" class="LineButton">Planning</a>
<a href="DataAnalyse.php?id=1" class="LineButton">Data analyse</a>
</div>
<div class="LineField">
<p>JC-FSX</p>
<a href="Planning.php?id=2" class="LineButton">Planning</a>
<a href="DataAnalyse.php?id=2" class="LineButton">Data analyse</a>
</div>

等等

CSS:

        .LineField
{
width: 50%;
height: 8%;
margin-bottom: 15px;
padding-top: 5px;
margin-left: auto;
margin-right: auto;
background: #191748;
border: 0.1em #191748;
border-radius: 1em;
color: white;

/* vertical alignment */
display: flex;
align-items:center;
}

.LineField p
{
margin-left: 25px;
margin-right: 25px;
Font-size: 200%;
}
.LineButton
{
border-radius: 0.5em;
width: 30%;
height: 50%;
background: linear-gradient(#ffffff, #c4c4ff);
margin-left: 3%;
margin-right: 3%;
padding-top: 5px;
color: #191748;
font-size: 150%;
font-weight: 500;
text-decoration: none;
}

最佳答案

你可以像下面这样设置p元素的宽度

    .LineField p
{
margin-left: 25px;
margin-right: 25px;
Font-size: 200%;
width: 130px;
}

已更新 Code Here

关于html - 在 html/css 中对齐按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35149618/

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