嗨,我对 IE7 的 css 有一些问题
我想将一些文本并排宽度放在图像中。像这样:http: //imageshack.us/photo/my-images/14/imgwx.png/
问题是在 IE7 中,文本出现在图像下方。
我有以下 HTML 代码:
<div id="imageArticle"><img="src/here.jpg"></div>
<div id="contentArticle">TEXT HERE </div>
#imageArticle {
float: right;
margin-bottom: 20px;
margin-left: 20px;
margin-top: 15px;
position: relative;
}
#contentArticle {
color: #333333;
font-size: 13px;
line-height: 17px;
margin-top: 90px;
padding-bottom: 20px;
position: relative;
width: 750px;
}
有什么建议吗??谢谢