gpt4 book ai didi

html - 如何为 anchor 标记链接分配高度和宽度

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

我试过如下

<div class="tag">
<a href="#">Book Form</a>
</div>

在 CSS 中

.tag a 
{
background-color:#899898;
height:125px;
width:250px;
color:#000;
font-family:Arial;
font-size:25px;
}

问题是 anchor 的高度和宽度没有改变。请帮助我

最佳答案

添加display: inline-block;在 CSS 中。

<div class="tag">
<a href="#">Book Form</a>
</div>

在 CSS 中

.tag a 
{
display: inline-block;
background-color:#899898;
height:125px;
width:250px;
color:#000;
font-family:Arial;
font-size:25px;
}

anchor (<a>)是行内元素。 (here 是默认内联元素的完整列表)。行内元素不能有 widthheight .所以如果你想要 inline元素以保持其原生属性,即处于正常的行流中,并且仍然具有 宽度高度垂直对齐 属性。然后inline-block是您应该使用的属性。

相关链接

编辑:添加说明

关于html - 如何为 anchor 标记链接分配高度和宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15551184/

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