Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この画像をチェック...
HTML エンティティを使用して、このような戻る矢印を作成したいと考えています。利用可能なものはありますか?
これは本当に楽しいです:DIはこれをやったばかりで、私は答えを得ました、その - ◀.
◀
リファレンス-デモ
10 進コードを使用できます。
◀
◀
CSS を使用して、画像を必要とせずに矢印を作成できます。境界線を使用して作成できます。
CSS 矢印の例
.arrow-right { width: 0; height: 0; border-top: 30px solid transparent; border-bottom: 30px solid transparent; border-left: 30px solid green; }
参照
キーボードを手動で押しAlt 17て、探している矢印を取得します。
Alt 17
例えば
<div>◄ (alt 17 pressed manually)</div>
お役に立てれば。