Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using Asp.net

I want to make a vertical line in my webpage...

How to make a vertical line in my webpage?

share|improve this question

8 Answers

up vote 52 down vote accepted

Put a div around the markup where you want the line to appear to next and use CSS to style it:

<div class="verticalLine">

some other content

</div>

in css:

.verticalLine {
    border-left:thick solid #ff0000;
}
share|improve this answer
4  
Thank you for separating style from content. ;) – jcolebrand Jun 30 '10 at 17:42
1  
Why the -1? Just interested to know. – XIII Dec 12 '12 at 9:17
2  
The world may never know – jcolebrand Dec 12 '12 at 14:52
1  
Life is tough, but keep on smiling. – XIII Dec 13 '12 at 13:42
Combining style with content isn't taboo for many. <div style="border-left:thin solid #0000ff">I have nothing to say and I am saying it</div> – ctpenrose Apr 2 at 23:40
show 1 more comment

You can use the horizontal rule tag to create vertical lines. <hr width="1" size="500"> By using minimal width and large size, horizontal rule becomes a vertical one.

share|improve this answer
5  
This trick is so awesome I wonder why it hasn't been chosen as the best one. – Giulio Muscarello Jan 20 at 15:08

There is no vertical equivalent to the <hr> element. However, one approach you may want to try is to use a simple border to the left or right of whatever you are separating:

<style type="text/css">
   #your_col {
      border-left: 1px solid black;
   }
</style>

<div id="your_col">
   Your content here
</div>
share|improve this answer

This will add a vertical line.

 <div style="width:1px;height:200px;background-color:black;float:left;"></div>

Style the border as well if you want 3D look.

share|improve this answer

One other option is to use a 1-pixel image, and set the height - this option would allow you to float it to where you need to be.

Not the most elegant solution though.

share|improve this answer
nothing wrong with this method, infact they use it on the jquery website – stephenmurdoch Jun 30 '10 at 17:51

There isn't any tag to create a vertical line in HTML.

  1. Method: You load a line image. Then you set its style like "height: 100px ; width: 2px"

  2. Method: You can use <td> tags <td style="border-left: 1px solid red; padding: 5px;"> X </td>

share|improve this answer

To make the vertical line to center in the middle use:

position: absolute; 
left: 50%;
share|improve this answer

Why not use &#124, which is the html special character for |

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.