I have been seeing these two things often lately.. and I am wondering, is there some HTML or CSS code to make them? I am planning to use them on my upcoming website, and I'd like to know, thanks
I have been seeing these two things often lately.. and I am wondering, is there some HTML or CSS code to make them? I am planning to use them on my upcoming website, and I'd like to know, thanks
The dotted and vertical lines you are seeing are actualy borders to divisions. Look into CSS if you don't know what divisions are.
So you have something like this.
<style type="text/css">
DIV#container {
width:40px;
height:200px;
border-right:2px dashed blue;
}
</style>
<div id="container">
...
</div>
If you want regular lines you can chose 'solid' instead of 'dashed'.
Check out http://webmonkey.com for tutorials on CSS. I started out web designing with this site for tutorials, though that was like 5 years ago.
Last edited by indianmuhu; 08-19-2006 at 11:33 PM.
$pizza_taco=mysql_query("INSERT pizza INTO soft_taco");
thanks, CSS is a lot more powerful than I thought it was