将链接文本更改为图标链接

时间:2014-10-21 04:38:57

标签: php css codeigniter

我想问一下,是否有人知道将链接更改为Icon的链接,点击后会自动在CodeIgniter中下载。

我有一个下载链接,但我不知道在哪里以及如何插入图标?知道的任何人请教我谢谢

我获得的下载语法

        <th field="file" width="50" sortable="true" data-options="formatter:function(val){
            return '<a href=\'<?php echo base_url(); ?>uploads/'+val+'\' target=\'_blank\'>' + val + '</a>';
        }">File</th>

1 个答案:

答案 0 :(得分:0)

像这样修改类

<style>
    .link_with_image{
        background-image: url('your desired image');
        height: 20px;
        width: 20px;
        display: inline-block;
        background-repeat:  no-repeat;
    }
</style>

您可以根据需要更改with和height

相关问题