geeta
geeta

Reputation: 1

How to draw the vertical line in ASP.Net?

I want to draw the vertical line in designing .

For example

Table 1
Keep your job-search confidential
Control your privacy
Reach to over 35000 recruiters
Get Job Alerts in your inbox
Apply to jobs from your Mobile

I want to draw vertical line both side about table1

Upvotes: 0

Views: 7641

Answers (1)

Mud
Mud

Reputation: 29000

I want to draw vertical line both side about table1

CSS border-left and border-right

<table style="border-left: 3px solid blue; border-right: 3px solid blue">
  <tr><td>Foo</td></tr>
  <tr><td>Bar</td></tr>
</table>

Upvotes: 3

Related Questions