gpt4 book ai didi

css - 如何在没有绝对且不包装div的情况下定位样式 anchor 元素?

转载 作者:行者123 更新时间:2023-12-03 03:36:42 24 4
gpt4 key购买 nike

我有以下 HTML:

<div class="top">
<div class="header title">Some Big Header Goes Here</div>
<div class="sub-header title">The fancyness enters here.</div>
<a href="#">A random link</a>
</div>

使用以下类进行样式设置:

.header {
padding:2%;
}
.sub-header {
font-size:120%;
font-style:italic;
}
.title {
font-size:158%;
line-height:80%;
}
.top {
display:block;
text-align:center;
border:1px solid lime;
padding:1%;
}
.top a {
/*color:red;*/ /* This works but I don't want this */
padding:100000px; /* This does not work, nor do smaller values */
margin:-999999px; /* This does nothing. */
}

如何设置 anchor 链接的样式,使其仅具有一点内边距和边距,从而使其与上面的两个标题保持一点距离?

最佳答案

display: block; 添加到您的 .top 样式,然后相应地调整边距和填充。

top a {
display: block;
/*color:red;*/ /* This works but I don't want this */
padding:10px;
margin:20px;

}

工作 fiddle :http://jsfiddle.net/jnz65/

关于css - 如何在没有绝对且不包装div的情况下定位样式 anchor 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15332901/

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