View Single Post
  #4 (permalink)  
Old Sep 27th, 2006, 16:53
ukgeoff ukgeoff is offline
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Text running from top to bottom - How?

Just did this for fun to see how it came out. It might be an idea you could develop.

A bit clumsy but...
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<title>Page title</title>

<style type="text/css">
<!--
    ul {
      list-style-type: none;
   
   }
   
    li {
       float: left;
      width: 0.6em;
      margin-right: 10px;
   }
   
   li a {
       text-decoration: none;
      background-color: blue;
      color: white;
      display: block;
      width: 100%;
      padding: 0 3px 0 3px;
   }
-->
</style>

</head>
<body>

<ul id='navigation'>
    <li><a href='*'>f<br />i<br />r<br />s<br />t<br /><br />l<br />i<br />n<br />k</a></li>
   <li><a href='*'>s<br />e<br />c<br />o<br />n<br />d<br /><br />l<br />i<br />n<br />k</a></li>
   <li><a href='*'>t<br />h<br />i<br />r<br />d<br /><br />l<br />i<br />n<br />k</a></li>
</ul>

</body>
</html>
Reply With Quote