Link to home
Start Free TrialLog in
Avatar of Chris Labbate
Chris LabbateFlag for Canada

asked on

CSS tables?

Looking for a way to display this in one line horizontally across the top of the page, instead of down the page. Just have a look and you will see what I mean. I want the varities of peppers to be all together on one line, with the H tags and pepper names.


http://www.forgeinfinity.com/canam/hot-jalapeno-peppers.html
Avatar of duncanb7
duncanb7

just use

your tag   {
display:inline;
}

that will display on items in your tag in horizontally, for example,

<ul>
<li>A</li>
<li>B</li>
</ul>

so
ul {

display:inline;

}

output will be  A B

not
A
B

Duncan
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial