如何在div链接和图像中垂直居中,即6?

时间:2012-02-14 11:29:31

标签: html css internet-explorer cross-browser

我需要在链接右侧放置一个关闭链接和图像。在IE 6中我完全错了: 更多我需要做的图像和文本垂直居中 我需要做什么: what i need

这是我的HTML:

<div class="close-text">
<a class="text-img">close</a>
<img src="/assets/browsers/button-close.png">
</div>

和css(sass)

.close-text{
height: 26px;
text-decoration: none;
color: #b94a48;
cursor: pointer;
float: right;
img{
  text-decoration: none;
  border: 0;
  float: right;
}
&:hover{
  color: #cecece;
}
.text-img{
  font: 11px arial,sans-serif;
}

}

如何在IE 6中使用它?和所有浏览器?

0 个答案:

没有答案