如何让图片css不在文字处移动?

How to make a image css not move at text?

我有这个演示:http://vestigedayz.com/sys/adminexec/Test/

我已经在上面放了一个图像(右边,那个文件夹图标)但是我不想在我随机敲键盘时让它移动。

.image{
    padding-left:1100px;
    position:fixed;

    }


    <a href=""> 
<div class="image">
<img src="images/suspect.png" width="160" height="140" alt=""> 
</div>
</a>

将右侧和顶部更改为您想要的。

position: absolute; right: 50px; top: 10px;

失去: padding-left:1100px; position:fixed;