gpt4 book ai didi

css - 宽度和高度似乎不适用于 :before pseudo-element

转载 作者:数据小太阳 更新时间:2023-10-29 09:11:10 25 4
gpt4 key购买 nike

Here是一把 fiddle 。

<p>foo <a class="infolink" href="#">bar</a> baz</p>

a.infolink::before
{
content: '?';
background: blue;
color: white;
width: 20ex;
height: 20ex;
}

“?”出现但显然没有 20ex 尺寸。为什么不?在 Firefox 和 Chrome 中测试。

最佳答案

注意:::before::after pseudo-elements实际上是默认放置display: inline;

将显示值更改为 inline-block 以使宽度和高度生效,同时保持内联格式化上下文。

a.infolink::before {
content: '?';
display: inline-block;
background: blue;
color: white;
width: 20px;
height: 20px;
}

http://jsfiddle.net/C7rSa/3/

关于css - 宽度和高度似乎不适用于 :before pseudo-element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20858587/

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