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.
所以基本上,我不知道怎么做,只有喜欢和转发我博客上的帖子的人的图标才会显示。
基本上,我正在寻找的是这样的:
而不是这样的:
我已经尝试寻找有关如何执行此操作的教程,但似乎找不到任何教程。
您可以使用 CSS 规则隐藏这些文本:
HTML:
<div id="postnote"> {PostNote} </div>
CSS:
#postnote { width: 700px; //width of your notes } .notes li { float: left; //or display: inline-block, this rule align icons next to each other } .notes .action { display: none; //hide text }