使用 CSS 讓圖片向下移可以透過 margin 屬性實現,其中 margin-bottom 值決定圖片下移距離,可以是像素值或百分比值。
如何使用CSS 讓圖片向下移
要使用CSS 讓圖片向下移,可以使用margin
屬性。
margin 屬性
margin
屬性用於在元素周圍新增空白空間。它有四個值,按順時針方向指定:
可以使用下列語法指定margin
屬性的值:
<code class="css">margin: <top-value> <right-value> <bottom-value> <left-value>;</code>
讓圖片向下移
要讓圖片向下移,可以增加margin-bottom
的值。語法如下:
<code class="css">img { margin-bottom: <value>; }</code>
<value>
可以是像素值(例如 "10px")或百分比值(例如 "10%")。
範例
下面的程式碼將使頁面中的所有圖片向下移動20 像素:
<code class="css">img { margin-bottom: 20px; }</code>
你也可以使用負值將圖片向上移動。例如,以下程式碼將使頁面中的所有圖片向上移動 10 像素:
<code class="css">img { margin-bottom: -10px; }</code>
以上是css如何讓圖片向下移的詳細內容。更多資訊請關注PHP中文網其他相關文章!