这个按钮叫啥按钮?
Posted
技术标签:
【中文标题】这个按钮叫啥按钮?【英文标题】:What button is this button called?这个按钮叫什么按钮? 【发布时间】:2022-01-24 03:52:27 【问题描述】:有人知道这个按钮叫什么吗?我想用这个按钮做一个常见问题页面。
【问题讨论】:
您可以右键单击该特定元素并选择“检查”选项。如果您不知道怎么做,请提供网址给我们,谢谢! 根据我的猜测,它是来自 font-awesome fontawesome.com/v5.15/icons/plus-circle?style=regular, fontawesome.com/v5.15/icons/minus-circle?style=regular 的plus-circle
和 minus-circle
图标
这是一个很棒的图标
【参考方案1】:
您可以通过将字体真棒链接导入到您的 html 代码来使用带有类 fa fa-plus-circle
的加号圆圈图标。
<!DOCTYPE html>
<html>
<head>
<title>Font Awesome Icons</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<p>Used on a button:</p>
<button style="font-size:24px;background:transparent;border:none"> <i class="fa fa-plus-circle"></i></button>
</body>
</html>
【讨论】:
以上是关于这个按钮叫啥按钮?的主要内容,如果未能解决你的问题,请参考以下文章