如何在html中显示此►播放(前进)或实心右箭头符号?
答案 0 :(得分:79)
是的,►
,但在所有浏览器中看起来可能不一样。
答案 1 :(得分:27)
如果你需要在CSS中使用它,就像在
中一样 li:before {
content: '\25BA';
}
这是►
的CSS转换
这些转化的有用工具:evotech.net/articles/testjsentities.html
答案 2 :(得分:24)
►
答案 3 :(得分:8)
以下是您可以使用的一长串清单:
答案 4 :(得分:6)
我尝试使用ascii代码但不喜欢它,因为它总是看起来很拉伸。
相反,我在网上发现了一个巧妙易于定制的解决方案,它使用css并且只操纵边框属性:
.play {
border-top: 10px solid white;
border-bottom: 10px solid white;
border-left: 20px solid black;
height: 0px;
}
<div class="play"></div>
答案 5 :(得分:0)
您可以使用Bootstrap字形图标。
<span class="glyphicon glyphicon-play"></span><br>
<span class="glyphicon glyphicon-play-circle"></span><br>
<span class="glyphicon glyphicon-triangle-right"></span><br>
请记住在<head>
元素中也包含Bootstrap和jQuery。
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
JSFiddle对此进行了解释:https://jsfiddle.net/canada/dfr90pac/
答案 6 :(得分:-7)
好吧,您可以使用图片并将其显示在<img></img>
标签中。在点击事件中,您可以编写一些JavaScript代码。您可以在Google中搜索图片。