0
how can i rotate an img
i inserted an image, but it is 90° rotated
4 Réponses
+ 1
it is compliqué
+ 1
Reccomended for you to edit the picture -.-
0
add to this element id np. id="pic". Next create element <style></style> into a head seo. Then element style should Look like this
<head>
<style>
#pic { /* img id */
-webkit- translate: rotate(Xdeg); /* do not write Xdeg in this place write how more you need * + "deg" np -90deg
translate: rotate(value what you write first time); /* np. 90deg
</style>
</head>
This code is written in CSS. Try to learn it.
0
thank you for the response.