尝试在页眉中旋转图像的建议

Suggestions for attempting to rotate an image in the header

我想让图像旋转大约 45 度。我在 Atom 中与 Bootstrap 一起工作。我已经尝试查看文档,但是我没有找到任何可以解决该挑战的内容。

您可以使用 CSS 变换 属性 将图像旋转 45 度。

.your-image-class {
  transform: rotate(45deg);
}