Thursday, January 16, 2014

CSS Image Styling

CSS Image Styling



<html>
<head>
<title>CSS Image Styling</title>

<style type="text/css">
img{
width : 300px;
height : 300px;
border : 5px dashed pink;
border-radius : 100px;
}
img : hover {
width : 200px;
height : 200px;
border : 5px solid green;
}
</style>

</head>
<body>
<img src="image name.extension">
</body>
</html>

0 comments:

Post a Comment