最近在一个网站上工作,并想对其进行调整,以便在图片后面加上右侧的文字给出简要说明。
<script type="text/javascript">
function gotofirst()
{
alert('This link will be replaced with the appropiate link');
window.open('http://google.com');
}
</script>
<tr>
<td>
<img src="images/poster2.jpg" onClick="gotosecond()">
</td>
<p id="forum">Join us on our forums, chat with staff members and much more!</p>
</tr>
CSS:
#forum
{
font-size: 13px;
}
然后让 CSS 文件右对齐。问题是图像被推下并且文本没有挤在提供的框中,而是在我想要它向右时在图像上方右对齐。
jsFiddle 链接:http: //jsfiddle.net/HCVVp/
谢谢