Flips an Image
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="STYLESHEET" type="text/css" href="web.css">
<title>web design</title>
</head>
<body>
<h1>Flips an Image</h1>
<p>Move your mouse over the image.
</p>
<img src="team2.jpg" width="400" height="300">
</body>
</html>
CSS Flips an Image Style
img{
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
No comments:
Post a Comment