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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Borders in Dreamweaver

Status
Not open for further replies.

artnat

Programmer
Jun 16, 2006
15
US
a. I put a border on image in Dreamweaver in the Properties dialogue box but I only see where to put in the thickness of the border not the color.
b. I would like to have a one pixel black line around my header: is it easiest to put such a border on some cells in a table, make a box and border that then put another table inside or what?
Thanks for your help
 
Use CSS
Code:
<style type="text/css">
<!--
.imgBorder {
	border: 1px solid #000000;
}
-->
</style>
<img src="yourimage.gif" class="imgBorder">

Cheech

[Peace][Pipe]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top