iWorm: display:block; ohne neue Zeile

Beitrag lesen

Hab versucht Buttons mit Hover-Effekt zu machen, hat geklappt, nur... die Buttons sind jetzt vertikal gestapelt da display:block ist.
Wie kann ich diese Horizontal ausrichten?

a.home  
{	  
	display: block;  
	background: url(button_home.png);  
	width: 160px;  
	height: 50px;  
}  
a.home:hover  
{	  
	background: url(button_home_rover.png);  
}  
a.home:active  
{  
	background: url(button_home_rover.png);  
}  
a.news  
{	  
	display: block;  
	background: url(button_news.png);  
	width: 150px;  
	height: 50px;  
}  
a.news:hover  
{	  
	background: url(button_news_rover.png);  
}  
a.news:active  
{  
	background: url(button_news_rover.png);  
}

.
.
.
.
.
<a class="home" href="home.html"></a><a class="news" href="news.html"></a>