可以把圖片作為文字那個塊標籤的背景圖片或者你把圖片和文字都放在一個同一個div 裡面然後給圖片和文字加上定位,然後文字的圖層比圖片的圖層位置高就行了。;第一種<style>.div{width: 200px;height: 200px;background: url("圖片路徑") no-repeat;}</style><div><p>你的文字內容</p></div>;第二種<style>.div{width: 200px;height: 200px;position: relative;z-index: 0}.div img{position: absolute;top: 0;left: 0;width: 100px;height: 100px;}.div p{position: absolute;top: 0;left: 0;z-index: 10;}</style><div><img src="圖片路徑"><p>你的文字內容</p></div>
可以把圖片作為文字那個塊標籤的背景圖片或者你把圖片和文字都放在一個同一個div 裡面然後給圖片和文字加上定位,然後文字的圖層比圖片的圖層位置高就行了。;第一種<style>.div{width: 200px;height: 200px;background: url("圖片路徑") no-repeat;}</style><div><p>你的文字內容</p></div>;第二種<style>.div{width: 200px;height: 200px;position: relative;z-index: 0}.div img{position: absolute;top: 0;left: 0;width: 100px;height: 100px;}.div p{position: absolute;top: 0;left: 0;z-index: 10;}</style><div><img src="圖片路徑"><p>你的文字內容</p></div>