如何在CSS元素之后添加一个向下的元素?
这个问题在这里已经有了答案:
尝试使用他们的unicode职位
table th.headerSortUp:after {
content: " 2191";
}
table th.headerSortDown:after {
content: " 2193";
}
table th:after {
color: #123456;
}
其他箭头符号请参阅http://www.blooberry.com/indexdot/html/tagpages/entities/arrow.htm。
链接地址: http://www.djcxy.com/p/15533.html上一篇: How add a downarrow after an element with CSS?
下一篇: Can you use HTML entities in the CSS “content” property?