0
我無法讓圖像旋轉。我曾嘗試在CSS中使用圖像旋轉屬性,但似乎沒有把握。圖片上方的元素是浮動元素。我不確定他們是否會以某種方式干擾圖像。圖像不在CSS中旋轉
body {
margin: 0;
}
h1,
h2 {
text-align: center;
}
#wrapper {
background: #eee;
max-width: 60%;
margin: 0 auto;
overflow: auto;
}
.float {
align-content: center;
margin: 2.5%;
max-width: 20%;
float: left;
text-align: center;
background-color: #eee;
}
img {
display: block;
margin: 0 auto;
clear: both;
max-width: 70%;
image-orientation: 90deg;
}
<h1>Postioning Practice</h1>
<h2>Using Floated Elements</h2>
<div id="wrapper">
<div class="float">
<h3>Position 1</h3>
<p></p>
</div>
<div class="float">
<h3>Position 2</h3>
<p>.</p>
</div>
<div class="float">
<h3>Position 3</h3>
<p></p>
</div>
<div class="float">
<h3>Position 4</h3>
<p>.</p>
</div>
<a href="yingCake.jpeg">
<img src="yingCake.jpeg" alt="Image of Ying eating cake">
</a>
</div>
爲什麼不使用transform:rotate(90deg)? – zsawaf
[image-orientation](https://developer.mozilla.org/en-US/docs/Web/CSS/image-orientation)僅適用於Firefox。使用變換(如@zsawaf所示)而不是 –
哦,太好了。謝謝 –