我试图在一行中对齐页脚小部件中的三个小 Logo (使用 Wordpress,主题是 Press coders)我创建了一个我想要的模型:
Image
然而,一切都在扭曲,令人难以置信!
你可以在我的页脚中看到困惑:
www.oxfordlifestylecentre.co.uk
我试过同时使用 div 和表格,我最新的表格如下所示:
<table align="right">
<tr>
<td>
<a href="/gym/">
<img src="http://www.oxfordlifestylecentre.co.uk/wp-content/uploads/2014/07/health-and-fitness-1.jpg" alt="Health and Fitness" />
</td>
<td>
<a href="/hair-and-beauty/>
<img src="http://www.oxfordlifestylecentre.co.uk/wp- content/uploads/2014/07/hair-and-beauty-1.jpg" alt="Hair and Beauty" />
</td>
</tr>
</table>
你的 html 语法是错误的。您缺少闭合 anchor 和引号。试试这个。
<table align="right">
<tr>
<td>
<a href="/gym/">
<img src="http://www.oxfordlifestylecentre.co.uk/wp-content/uploads/2014/07/health-and-fitness-1.jpg" alt="Health and Fitness" /></a>
</td>
<td>
<a href="/hair-and-beauty/">
<img src="http://www.oxfordlifestylecentre.co.uk/wp- content/uploads/2014/07/hair-and-beauty-1.jpg" alt="Hair and Beauty" /></a>
</td>
</tr>
</table>
我是一名优秀的程序员,十分优秀!