0
Guys, someone can help me because my image is not rotating?
<html>
<head>
<style src="reset.css"></style>
<style src="header.css"></style>
<meta charset="utf-8">
<title>Kw Design - Agência Digital</title>
</head>
<body>
<header>
<div class="logo_header">
<img src="logo.png" alt="Logo Kw Desgign">
</div>
</header>
</body>
</html>
css...
.logo_header
{
transform: rotate(-15deg);
position:relative;
top:-75px;
left:-100px;
}
Try to set a
height
and/orwidth
for yourdiv
.– Eduardo Silva