作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码在下面,底部有一个缩略图,我希望下载链接和文本出现在缩略图下方,并且缩略图出现在标题/横幅下方黑色背景的左上角。有人可以帮忙吗?
<body
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<br>
<table width="768" border="0" align="center" cellpadding="4" cellspacing="2" style="text-align: center">
<tr>
<td height="70" colspan="3" align="center" valign="middle" bgcolor="#000000">
<img src="https://farm1.staticflickr.com/756/23511757696_469b593243_b.jpg" </h1></td>
</tr>
<tr>
<td colspan="3">
<div style="text-align: center; width: 100%">
<a href="https://facebook.com/PhotographyBok" target="_"><input
type="button" value="Timeline"/></a>
<a href="https://500px.com/marcus_bok" target="_"><input
type="button" value="Portfolio"/></a>
<a href="https://facebook.com/PhotographyBok/app/251458316228/" target="_"><input
type="button" value="Shop Now"/></a>
<a href="https://www.facebook.com/PhotographyBok/app/128953167177144/" target="_"><input
type="button" value="Downloads"/></a>
<a href="https://www.facebook.com/PhotographyBok/info/" target="_"><input
type="button" value="About Me"/></a>
<div class="fb-like" data-href="https://facebook.com/photographybok" data-layout="button" data-action="like" data-show-faces="true" data-share="true">
</div>
</tr>
<td height="568" border="4" align="centre" valign="middle" bgcolor="#000000">
<img align="left" src="https://farm6.staticflickr.com/5685/22966400834_ca5b8b1cae_h.jpg" class="img-with-text" alt="Texture Download" width="204" height="136"> <a href="https://www.dropbox.com/s/2zikce9elhkg2qi/12333083_10153200931056625_1694988016_o.jpg?dl=0">Download Photoshop Texture</a>
</td>
</td>
最佳答案
HTML是一种标记语言,每个标签都用<>
表示符号并以 </>
结束符号。您有许多不正确编写的标签。我检查了代码,关闭(或删除)未关闭的代码。
现在您有一个包含 4 行的表格,其中第四行是缩略图下方的文本和链接。您可以更多地使用表格单元格 (<td>
) 放置,但按照 Flignats 的建议,您应该学习一些基本的 HTML/CSS 布局并替换当前的表格布局。
这里有一些关于您的代码的附加说明,如果您使用的话:
<body>
<div id="fb-root"></div>
<br>
<table width="768" border="0" align="center" cellpadding="4" cellspacing="2" style="text-align: center">
<tr>
<td height="70" colspan="3" align="center" valign="middle" bgcolor="#000000">
<img src="https://farm1.staticflickr.com/756/23511757696_469b593243_b.jpg">
</td>
</tr>
<tr>
<td colspan="3">
<div style="text-align: center; width: 100%">
<a href="https://facebook.com/PhotographyBok" target="_">
<input type="button" value="Timeline" />
</a>
<a href="https://500px.com/marcus_bok" target="_">
<input type="button" value="Portfolio" />
</a>
<a href="https://facebook.com/PhotographyBok/app/251458316228/" target="_">
<input type="button" value="Shop Now" />
</a>
<a href="https://www.facebook.com/PhotographyBok/app/128953167177144/" target="_">
<input type="button" value="Downloads" />
</a>
<a href="https://www.facebook.com/PhotographyBok/info/" target="_">
<input type="button" value="About Me" />
</a>
<div class="fb-like" data-href="https://facebook.com/photographybok" data-layout="button" data-action="like" data-show-faces="true" data-share="true">
</div>
</div>
</td>
</tr>
<tr>
<td height="136" border="4" align="centre" valign="middle" bgcolor="#000000">
<img align="left" src="https://farm6.staticflickr.com/5685/22966400834_ca5b8b1cae_h.jpg" class="img-with-text" alt="Texture Download" width="204" height="136">
</td>
</tr>
<tr border="none" align="left">
<td>
<a href="https://www.dropbox.com/s/2zikce9elhkg2qi/12333083_10153200931056625_1694988016_o.jpg?dl=0">Download Photoshop Texture</a>
</td>
</tr>
</table>
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
</body>
关于html - 将文本与缩略图下的链接对齐,并将缩略图对齐到左上角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34144798/
我有一个具有可变数量子元素的固定大小的 div。我不知道 children 的大小。目标是缩小它们以适合父级。 例子: .parent { width: 100px; height: 100p
我是一名优秀的程序员,十分优秀!