gpt4 book ai didi

css - 属性内容不显示

转载 作者:太空宇宙 更新时间:2023-11-04 04:09:27 24 4
gpt4 key购买 nike

在我的 CSS 中:

nav label:AFTER {
content: " ▾";
}

但在 chrome 中它显示如下:

content: " â–¾";

我已经添加了<meta charset="utf-8"/>在我的 jsp 页面和 @CHARSET "utf-8";在 css 文件中。

最佳答案

像这样的事情怎么样:

HTML:

<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>

CSS:

ul{
list-style-type: none;
}

ul li{
display: inline-block;
position: relative;
margin-right: 10px;
}

ul li:after {
content:'';
position: absolute;
top: 10px;
right: -10px;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-top: 3px solid black;
}

the Fiddle ..

关于css - 属性内容不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20887370/

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