table trouble

insingertech

New Member
how do i make all elements in table be on the top

like this
Getting Started
-Welcome Office
-Welcome2 -Word
-welcome3

to getting like this
Getting Started Office
-Welcome -Word
-Welcome2
-welcome3
 

PixelPusher

Super Moderator
Staff member
Better option is to use CSS. And if you are trying to replicate the layout below, DONT use a table....that is not what it is meant for. Use a list (UL).

Example:

HTML:
<ul class="mylist">
   <li class="title">Getting Started Office</li>
   <li>Welcome 1</li>
   <li>Welcome 2</li>
   <li>welcome 3</li>
</ul>

CSS
HTML:
ul.mylist {
margin:10px;
padding:10px;
{
ul.mylist li {
list-style-type:none;
font:normal 10pt Arial, san-serif;
color:#ddd;
text-indent:10px;
}
ul.mylist li.title {
font:bold 11pt Arial, san-serif;
color:#555;
text-indent:0;
padding:0 0 10px 0;
}
 

zartwork

New Member
Yes I agree with the above posters in saying that you really must use CSS instead, tables are very outdated for layout.
 
Top