在 css 中添加圖片的方法有:1. 使用 background-image 屬性;2. 使用 img 元素;3. 使用 css background-url 屬性。此外,還有 background-size、background-repeat、background-position 和 object-fit 等其他屬性可用于控制圖片的外觀和行為。
如何用 CSS 添加圖片
在 CSS 中添加圖片的方法有以下幾種:
1. 使用 background-image 屬性
<code class="<a style='color:#f60; text-decoration:underline;' href=" https: target="_blank">css">.image { background-image: url("image.png"); }</code>
登錄后復制
background-image
屬性用于指定元素的背景圖像。在這種情況下,image.png
是要添加的圖片文件。
2. 使用 img 元素
<code class="html"><img src="image.png" alt="Image Description"></code>
登錄后復制
img
元素用于在文檔中嵌入圖片。src
屬性指定要顯示的圖片文件,而 alt
屬性提供圖片的文本替代版本。
3. 使用 CSS background-url 屬性
<code class="css">.image { background-url: url("image.png"); }</code>
登錄后復制
background-url
屬性用于指定元素的背景圖像,類似于 background-image
屬性。然而,background-url
不能用于設置其他背景屬性,如 background-color
或 background-repeat
。
其他屬性
除了這些基本方法之外,還有其他 CSS 屬性可以用于控制圖片的外觀和行為:
background-size: 用于指定圖片在元素中的尺寸。
background-repeat: 用于指定圖片是否在元素中重復。
background-position: 用于指定圖片在元素中的位置。
object-fit: 用于控制圖片如何調整為匹配其父元素的尺寸。