Forum Moderators: not2easy
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<base href="http://www.coothead.co.uk/images/">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>centered images</title>
<style type="text/css">
#container-one{
width:778px;
padding:10px;
border:1px solid #999;
margin:10px auto;
text-align:center; /* this will center inline elements */
}
#image-one img {
width:100px;
height:100px;
border:0;
}
#container-two {
width:778px;
padding:10px;
border:1px solid #333;
margin:auto;
}
#image-two {
display:block;
width:100px;
margin:auto; /* this will center block elements */
}
#image-two img {
width:100px;
height:100px;
border:0;
}
</style>
</head>
<body>
<div id="container-one">
<a id="image-one" href="#"><img src="anim.gif" alt=""></a>
</div>
<div id="container-two">
<a id="image-two" href="#"><img src="anim.gif" alt=""></a>
</div>
</body>
</html>
.p-centerNoBorder {
display: block;
text-align: center;
padding: 0px;
margin-top: 0px;
margin-bottom: 0px;
border: 0px none #000;
}
.p-centerNoBorder img {
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.p-centerBorder {
display: block;
text-align: center;
padding: 0px;
margin-top: 0px;
margin-bottom: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
border-top-color: #000;
border-right-color: #000;
border-bottom-color: #000;
border-left-color: #000;
}
.p-centerBorder img {
border: 1px solid #000;
}
}