How do i Put a Virtical Divideo on the page?
Moderator: General Moderators
How do i Put a Virtical Divideo on the page?
Using HTML how do i make a Vertical line????
-
gavinbsocom
- Forum Commoner
- Posts: 71
- Joined: Tue Sep 30, 2003 9:51 pm
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
-
gavinbsocom
- Forum Commoner
- Posts: 71
- Joined: Tue Sep 30, 2003 9:51 pm
You can do vertical rules!!
there a few methods
Method 1(HTML):
Method 2(CSS):
Method 3:
Not sure about the compatability of all these methods though!
Mark
there a few methods
Method 1(HTML):
Code: Select all
<hr width="1" size="100" noshade align="center">Code: Select all
<hr style="height: 100px; width: 1px">Code: Select all
<html>
<head>
<title>untitled</title>
<style type="text/css">
.vertRule { width: 3px; vertical-align: top; margin-left: 3px; margin-right: 5px; }
</style>
</head>
<body>
blah blah blah <span class="vertRule" style="height:100%;border:3px gold inset;"></span> blah
blah blah <span class="vertRule" style="height:100%;border:3px gold outset;"></span> blah
blah blah <span class="vertRule" style="height:100%;border:3px olive groove;"></span> blah
blah blah <span class="vertRule" style="height:100%;border:3px tan ridge;"></span> blah
blah blah <span class="vertRule" style="height:100%;border:3px #c0c0c0 double;"></span> blah
blah blah
</body>
</html>Mark
-
gavinbsocom
- Forum Commoner
- Posts: 71
- Joined: Tue Sep 30, 2003 9:51 pm