如何添加锚符号

时间:2016-02-04 09:11:12

标签: css angularjs anchor

当鼠标悬停在角度时,我想在我的网址上添加一个锚符号。这是我的代码,

<a ng-click="download(File)"><img src="images/filePic.png"/>{{filename}}</a> 

enter image description here

1 个答案:

答案 0 :(得分:5)

像这样可能

  

⚓{{filename}}

PictureBox

使用CSS hover进行更新

tableLayoutPanel6.RowSpan = 8 // number of rows the control must use in its parent TableLayoutPanel
<a ng-click="download(File)">&#9875; <img src="images/filePic.png"/>{{filename}}</a> 

使用CSS悬停游标更新2

a:hover:after {
  content: ' \2693'
}
<a ng-click="download(File)"><img src="http://placehold.it/15x15"/> some filename</a>