私はウェブサイトをデザインしていて、このようなものにする必要があります http://www.spookycraft.net/
スライド ショーやJavaScript などを除いて、Web ページの中央に 4 つの個別のクリック可能なブロックが必要なmargin:auto
だけです。興味深いことに、これが私の現在のコードです。より高い解像度の画面でも同じように見えるようにする必要があることに注意してください。margin-left
margin-bottom
margin-bottom
margin:auto;
<!DOCTYPE HTML>
<html>
<head>
<table border="10px"; class="head">
<tr>
<td>
<img src="http://www3.alcatel-lucent.com/partners/hp/data-center-network-connect/images/Alliance_DCNC_700x200.jpg" > </>
</td>
<tr>
</table>
<style media="screen" type="text/css">
.tone{
margin:auto;
}
.ttwo{
margin:auto;
}
.tthree{
margin:auto;
}
.tfour{
margin:auto;
}
.head{
margin:auto;
}
</style>
</head>
<body>
<table border="5px"; class="tone">
<tr>
<td>
<a href="www.reddit.com"><img src="http://www.wilsoninfo.com/300x300.gif"> </> </a>
</td>
</tr>
</table>
<table border="5px"; class="ttwo">
<tr>
<td>
<a href="www.reddit.com"><img src="http://www.wilsoninfo.com/300x300.gif"> </> </a>
</td>
</tr>
</table>
<table border="5px" class="tthree">
<tr>
<td>
<a href="www.reddit.com"><img src="http://www.wilsoninfo.com/300x300.gif"> </> </a>
</td>
</tr>
</table>
<table border="5px" class="tfour">
<tr>
<td>
<a href="www.reddit.com"><img src="http://www.wilsoninfo.com/300x300.gif"> </> </a>
</td>
</tr>
</table>
</body>
</html>
どんな助けでも大歓迎です!私は自分の問題に対する答えを見つけるために取り組んでいます。見つけたら、このスレッドを更新します。