だから私は自分のウェブサイト用の一連のナビゲーションボタンを作成しましPhotoshop
た。ボタンを一元化したいのですが、さまざまなCSS
マージンステートメントまたはフロートステートメントを使用するとボタンが一元化されますが、同じ行ではなく 1 x 4 列にあります ( 4 ボタン)。
私のサイトのバナーは一元化されており、ボタンをその下に一元化したいと考えています。これが私のコードです:
HTML
<div id="home" class="home">
<img title="Home" src="images/images/home.jpg">
</div>
<div id="iwb" class="iwb" align="center;">
<img title="IWB" src="images/images/iwb.jpg">
</div>
<div id="presentations" class="presentations">
<img title="Presentations" src="images/images/presentations.jpg">
</div>
<div id="internet" class="internet">
<img title="internet" src="images/images/net.jpg">
</div>
CSS
.home {
display: block;
width: 188px;
height: 50px;
background: url(images/images/home.jpg) bottom;
text-indent: -99999px;
}
.home:hover {
background-position: 0 0;
}
.iwb {
display: block;
width: 188px;
height: 50px;
background: url(images/images/iwb.jpg) bottom;
text-indent: -99999px;
}
.iwb:hover {
background-position: 0 0;
}
.presentations {
display: block;
width: 188px;
height: 50px;
background: url(images/images/presentations.jpg) bottom;
text-indent: -99999px;
}
.presentations:hover {
background-position: 0 0;
}
.internet {
display: block;
width: 188px;
height: 50px;
background: url(images/images/net.jpg) bottom;
text-indent: -99999px;
}
.internet:hover {
background-position: 0 0;
}
それらを一元化するにはどうすればよいですか?ただし、ヘッダーのすぐ下にある 1 つの行全体に渡りますか? 可能であれば、ヘッダー ボタンとナビゲーション バー ボタンの間に垂直方向の空白を入れないようにします。
ありがとう。