在CSS中,您可以使用border
屬性為圖片添加外邊框,以下是一些示例代碼,展示如何為圖片添加不同樣式的邊框:
1、添加實(shí)線邊框:
img { border: 2px solid #000; }
2、添加虛線邊框:
img { border: 2px dashed #000; }
3、添加圓角邊框:
img { border: 2px solid #000; border-radius: 10px; }
4、添加陰影效果:
img { border: 2px solid #000; box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); }
版權(quán)聲明:除非特別標(biāo)注,否則均為本站原創(chuàng)文章,轉(zhuǎn)載時(shí)請以鏈接形式注明文章出處。