CSS Image Styling
<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