Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

precise vertical and horizontal lines

Status
Not open for further replies.

nomsg

Technical User
Aug 21, 2001
61
CA
Hi There:

Please check this site:

Would you know how they created those horizontal and vertical black lines to appear precisely on a given area?

Also, how did they box in that foto with the black lines?

Thank you.
nomsg.
 
They have used CSS, view the page source to see how they have achieved it

Cheech

[Peace][Pipe]
 
CSS is D-way to decorate:
Code:
<html>
<head>
<title>Very Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.ImageFrame {
   border: 1px solid Black;
}
</style>
</head>

<body>
<img src="/image.jpg" width="140" height="130" class="ImageFrame"> 
</body>
</html>
All the best!

> need more info?
:: don't click HERE ::
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top