-1

これを見てください

  th.asc a:after {
    content: '▲';
}

その記号を表示させることができるキーボードで何を入力できますか?このシンボルは何ですか?いつ使うべきですか?

4

2 に答える 2

2

その文字は、<a>タグ内にあるタグの後にレンダリングされth、おそらくクラス名を見ると、昇順ascの並べ替えを示します。これは、昇順の並べ替えを表すアイコンとして使用されます。

CSSコンテンツプロパティの詳細

三角文字に関する情報

th.asc a:after
     ---^---
/* This makes the content character render after the <a> tag which is inside 
   th having class .asc which I assume stands for ascending, if you use :before 
   instead of :after, triangle will be rendered before the <a> tag text */
于 2013-02-16T07:45:51.807 に答える
1

It is a Unicode character, that besides giving support to all the different alphabets in the world, have graphics chars.

You have a lot of pages to look for unicode characters. One specially curious is

shapecatcher

where you can draw the shape that you wanty.

Specifying them in the CSS is easy, you just have to put the number behind a backslash

'\25A0'

is a square

于 2013-02-16T08:00:18.783 に答える