gpt4 book ai didi

html - float :left with % height

转载 作者:行者123 更新时间:2023-11-28 17:58:27 24 4
gpt4 key购买 nike

我目前正在尝试这样做。

enter image description here

这是我目前得到的代码,

HTML

<a class="home" href="home.php">
<i id="icon" class="fa fa-home"></i>
<p id="tag">Home</p>
</a>

.home 的 Css

width: 25%;
height: 25%;
overflow: hidden;
float: left;
background: #ea7b7b;
color: #fff;
text-decoration: none;

还有高度:25%;不起作用。我发现了一些修复,比如添加 position:absolute;但这会在调整大小时弄乱一切。我正试图找到解决此问题的方法,我们将不胜感激!

最佳答案

尝试将元素放在具有明确高度的容器 div 中。

<div class="header"></div>
<div class="container">
<a class="home" href="home.php">
<i id="icon" class="fa fa-home"></i>
<p id="tag">Home</p>
</a>
<a class="contact" href="contact.php">
<i id="icon" class="fa fa-home"></i>
<p id="tag">Contact</p>
</a>
</div>
<div class="footer"></div>

CSS

.header, .footer
{
height: 50px;
background: black;
}

.home
{
background: #ea7b7b;
}

.container > a
{
width: 25%;
height: 50%;
overflow: hidden;
float: left;
color: #fff;
text-decoration: none;
}

.container
{
height: 600px;
width: 100%;
}

关于html - float :left with % height,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20900116/

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