如何在我的图像中对齐以将其垂直向上移动?(CSS,HTML)?

时间:2011-11-11 05:53:52

标签: html css

一个基本的CSS / HTML问题。如我的屏幕截图所示,左侧有一个箭头图像,我想以这样一种方式移动它,使得箭头的中点稍微高于文本的中点。可能这是基本的东西,但是css中的哪些属性可以帮助我做到这一点?

我有一个像这样的图像的css类。

<img src="images/block_arrow.png" class="t-image imagestyle1" alt="image"/>

谢谢,阿达什讷

Screenshot

1 个答案:

答案 0 :(得分:16)

添加以下css ..

.t-image {
    position: relative /* Declared position allows for location changes */
    top: -2px; /* Moves the image 2px closer to the top of the page */
}