
November 20th, 2012, 09:59 PM
|
|
Contributing User
|
|
Join Date: Aug 2011
Location: Sydney Australia
|
|
Quote: | Originally Posted by Nick Wyden
but none of these work so how can I center this photo? thanks |
Code:
<!DOCTYPE html>
<html>
<head>
<meta name="keywords" "question"/>
<style>
.pic
{
width:100px;
height:100px;
box-shadow: 10px 10px 5px #888888 ;
}
.center {
width:100px;
padding: none;
margin:0 auto;
}
</style>
</head>
<body>
<div class="center"><img class='pic' src="img.jpeg"/></div>
</body>
</html>
|