View Single Post
04-11-2007, 04:55 AM
#4
Amross is offline Amross
Status: Member
Join date: Jan 2007
Location:
Expertise:
Software:
 
Posts: 311
iTrader: 4 / 100%
 

Amross is on a distinguished road

  Old

1. Yes they can and very simply. Heading tags (h1, h2, etc.) are block level elements and as such, cause the line break. By changing the default display of those elements to inline, you will have the solution to your question:

HTML Code:
h1 {
   display: inline;
}
2. The same way you would style any other element using CSS.