dotted and verticle lines?

ZeptOr

New Member
Messages
442
Reaction score
0
Points
0
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
 

indianmuhu

New Member
Messages
8
Reaction score
0
Points
0
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:

ZeptOr

New Member
Messages
442
Reaction score
0
Points
0
thanks, CSS is a lot more powerful than I thought it was
 
Top